statfs.h 297 B

1234567891011121314151617181920212223
  1. #ifndef _SYS_STATFS_H
  2. #define _SYS_STATFS_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <sys/statvfs.h>
  7. typedef struct {
  8. int __val[2];
  9. } fsid_t;
  10. #include <bits/statfs.h>
  11. int statfs (const char *, struct statfs *);
  12. int fstatfs (int, struct statfs *);
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif