statfs.h 477 B

12345678910111213141516
  1. #ifndef _SYS_STATFS_H
  2. #include <io/sys/statfs.h>
  3. # ifndef _ISOMAC
  4. /* Now define the internal interfaces. */
  5. extern int __statfs (const char *__file, struct statfs *__buf);
  6. libc_hidden_proto (__statfs)
  7. extern int __fstatfs (int __fildes, struct statfs *__buf);
  8. libc_hidden_proto (__fstatfs)
  9. extern int __statfs64 (const char *__file, struct statfs64 *__buf)
  10. attribute_hidden;
  11. extern int __fstatfs64 (int __fildes, struct statfs64 *__buf);
  12. # endif /* !_ISOMAC */
  13. #endif