zig/lib/libc/musl/arch/x32/bits/statfs.h
Alex Rønne Petersen ec0e6440b1
musl: Update sources from musl 1.2.5.
Adds mipsn32 and x32 sources.

Also remove some useless .in files.
2024-11-02 10:42:53 +01:00

9 lines
270 B
C
Vendored

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];
};