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