1
0

statfs.h 228 B

123456789101112131415
  1. #ifndef _SYS_STATFS_H
  2. #define _SYS_STATFS_H
  3. #include <sys/statvfs.h>
  4. typedef struct {
  5. int __val[2];
  6. } fsid_t;
  7. #include <bits/statfs.h>
  8. int statfs (const char *, struct statfs *);
  9. int fstatfs (int, struct statfs *);
  10. #endif