fix the definition of struct statvfs to match lsb abi
[musl] / include / sys / statfs.h
1 #ifndef _SYS_STATFS_H
2 #define _SYS_STATFS_H
3
4 #include <sys/statvfs.h>
5
6 typedef struct {
7         int val[2];
8 } fsid_t;
9
10 #include <bits/statfs.h>
11
12 int statfs (const char *, struct statfs *);
13 int fstatfs (int, struct statfs *);
14
15 #endif