1 #pragma once
2 
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
6 
7 #include <features.h>
8 
9 #include <sys/statvfs.h>
10 
11 typedef struct __fsid_t { int __val[2]; } fsid_t;
12 
13 #include <bits/statfs.h>
14 
15 int statfs(const char*, struct statfs*);
16 int fstatfs(int, struct statfs*);
17 
18 #ifdef __cplusplus
19 }
20 #endif
21