add previously-missing ios646.h
[musl] / include / bits / statfs.h
1 struct statvfs {
2         unsigned long f_type;
3         unsigned long f_bsize;
4         fsblkcnt_t f_blocks;
5         fsblkcnt_t f_bfree;
6         fsblkcnt_t f_bavail;
7         fsfilcnt_t f_files;
8         fsfilcnt_t f_ffree;
9         unsigned long f_fsid;
10         unsigned long __unused;
11         unsigned long f_namemax;
12         unsigned long f_frsize;
13         fsfilcnt_t f_favail;
14         unsigned long f_flag;
15         unsigned long __reserved[2];
16 };