mirror of
git://git.musl-libc.org/musl
synced 2024-12-27 01:02:12 +00:00
6315004f61
basically, this version of the code was obtained by starting with rdp's work from his ellcc source tree, adapting it to musl's build system and coding style, auditing the bits headers for discrepencies with kernel definitions or glibc/LSB ABI or large file issues, fixing up incompatibility with the old binutils from aboriginal linux, and adding some new special cases to deal with the oddities of sigaction and pipe syscall interfaces on mips. at present, minimal test programs work, but some interfaces are broken or missing. threaded programs probably will not link.
8 lines
195 B
C
8 lines
195 B
C
struct statfs {
|
|
unsigned long f_type, f_bsize;
|
|
fsblkcnt_t f_blocks, f_bfree, f_bavail;
|
|
fsfilcnt_t f_files, f_ffree;
|
|
fsid_t f_fsid;
|
|
unsigned long f_namelen, f_frsize, f_flags, f_spare[4];
|
|
};
|