musl/arch/x32/bits/statfs.h
rofl0r 797f9a32a4 x32: fix struct statfs
the omission of the padding was uncovered by the latest regression
statvfs regression test added to libc-test.
2014-03-17 22:34:55 +01:00

10 lines
270 B
C

struct statfs {
unsigned long f_type, __pad0, f_bsize, __pad1;
fsblkcnt_t f_blocks, f_bfree, f_bavail;
fsfilcnt_t f_files, f_ffree;
fsid_t f_fsid;
unsigned long f_namelen, __pad2, f_frsize, __pad3;
unsigned long f_flags, __pad4;
unsigned long long f_spare[4];
};