aboutsummaryrefslogtreecommitdiff
path: root/system/include/sys/statvfs.h
blob: 9b7490b544fe9d901e864ebd3a991c700cc5f0ad (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
#ifdef __cplusplus
extern "C" {
#endif

struct statvfs {
  int f_bsize;
  int f_frsize;
  int f_blocks;
  int f_bfree;
  int f_bavail;
  int f_files;
  int f_ffree;
  int f_favail;
  int f_fsid;
  int f_flag;
  int f_namemax;
};

int statvfs(char *path, struct statvfs *s);

#ifdef __cplusplus
}
#endif