#ifndef _ABIBITS_STATFS_H #define _ABIBITS_STATFS_H #include #include typedef struct __mlibc_fsid { int __val[2]; } fsid_t; struct statfs { unsigned long f_type; unsigned long f_bsize; fsblkcnt_t f_blocks; fsblkcnt_t f_bfree; fsblkcnt_t f_bavail; fsfilcnt_t f_files; fsfilcnt_t f_ffree; fsid_t f_fsid; unsigned long f_namelen; unsigned long f_frsize; unsigned long f_flags; unsigned long __f_spare[4]; }; #endif /* _ABIBITS_STATFS_H */