xref: /minix/minix/include/sys/statfs.h (revision 83133719)
1 /* Data for fstatfs() call. */
2 
3 #ifndef _STATFS_H
4 #define _STATFS_H
5 
6 #include <sys/cdefs.h>
7 #include <sys/types.h>
8 
9 struct statfs {
10   int f_bsize;		/* file system block size */
11 };
12 
13 int fstatfs(int fd, struct statfs *st);
14 
15 #endif /* _STATFS_H */
16