blob: 60c977f65f5c74e0802927179393a0f7af3bc646 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef _ABIBITS_STATFS_H
#define _ABIBITS_STATFS_H
#include <abi-bits/fsblkcnt_t.h>
#include <abi-bits/fsfilcnt_t.h>
typedef struct __mlibc_fsid {
int __val[2];
} fsid_t;
struct statfs {
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;
fsid_t f_fsid;
unsigned long f_namelen;
unsigned long f_frsize;
unsigned long f_flags;
unsigned long __f_spare[4];
};
#endif /* _ABIBITS_STATFS_H */
|