fix all missing instances of __cplusplus checks/extern "C" in 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 __cplusplus
20 }
21 #endif
22
23 #endif