add *64 junk for sys/*.h headers
[musl] / include / sys / statfs.h
1 #ifndef _SYS_STATFS_H
2 #define _SYS_STATFS_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 #include <sys/statvfs.h>
9
10 typedef struct {
11         int __val[2];
12 } fsid_t;
13
14 #include <bits/statfs.h>
15
16 int statfs (const char *, struct statfs *);
17 int fstatfs (int, struct statfs *);
18
19 #ifdef _LARGEFILE64_SOURCE
20 #define statfs64 statfs
21 #define fstatfs64 fstatfs
22 #define fsblkcnt64_t fsblkcnt_t
23 #define fsfilcnt64_t fsfilcnt_t
24 #endif
25
26 #ifdef __cplusplus
27 }
28 #endif
29
30 #endif