6479be6faa287d2e84b3666a2b086e0c23c1d08f
[musl] / include / sys / statvfs.h
1 #ifndef _SYS_STATVFS_H
2 #define _SYS_STATVFS_H
3
4
5 #define __NEED_fsblkcnt_t
6 #define __NEED_fsfilcnt_t
7 #include <bits/alltypes.h>
8
9 #include <bits/statfs.h>
10
11 int statvfs (const char *, struct statvfs *);
12 int fstatvfs (int, struct statvfs *);
13
14 #define ST_RDONLY 1
15 #define ST_NOSUID 2
16
17 #if 0
18 #define ST_NODEV  4
19 #define ST_NOEXEC 8
20 #define ST_SYNCHRONOUS 16
21 #define ST_MANDLOCK    64
22 #define ST_WRITE       128
23 #define ST_APPEND      256
24 #define ST_IMMUTABLE   512
25 #define ST_NOATIME     1024
26 #define ST_NODIRATIME  2048
27 #endif
28
29
30 #endif