mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
348 B
17 lines
348 B
|
15 years ago
|
struct statvfs {
|
||
|
|
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;
|
||
|
|
unsigned long f_fsid;
|
||
|
|
unsigned long __unused;
|
||
|
|
unsigned long f_namemax;
|
||
|
|
unsigned long f_frsize;
|
||
|
|
fsfilcnt_t f_favail;
|
||
|
|
unsigned long f_flag;
|
||
|
|
unsigned long __reserved[2];
|
||
|
|
};
|