Blame include/sys/statfs.h

Packit 6c4009
#ifndef _SYS_STATFS_H
Packit 6c4009
#include <io/sys/statfs.h>
Packit 6c4009
Packit 6c4009
# ifndef _ISOMAC
Packit 6c4009
Packit 6c4009
/* Now define the internal interfaces.  */
Packit 6c4009
extern int __statfs (const char *__file, struct statfs *__buf);
Packit 6c4009
libc_hidden_proto (__statfs)
Packit 6c4009
extern int __fstatfs (int __fildes, struct statfs *__buf)
Packit 6c4009
     attribute_hidden;
Packit 6c4009
extern int __statfs64 (const char *__file, struct statfs64 *__buf)
Packit 6c4009
     attribute_hidden;
Packit 6c4009
extern int __fstatfs64 (int __fildes, struct statfs64 *__buf)
Packit 6c4009
     attribute_hidden;
Packit 6c4009
Packit 6c4009
# endif /* !_ISOMAC */
Packit 6c4009
#endif