blob: 80c8834be48950f4513fbc053266f1c4c308e83b (
plain)
1
2
3
4
5
6
7
|
#ifndef _SYS_STATFS_H
#include <io/sys/statfs.h>
/* Now define the internal interfaces. */
extern int __statfs __P ((__const char *__file, struct statfs *__buf));
extern int __fstatfs __P ((int __fildes, struct statfs *__buf));
#endif
|