more stack for boot
[minix.git] / include / sys / statfs.h
blob30bf979368dfb4ce14aa1b37d57f40037e2bc134
1 /* Data for fstatfs() call. */
3 #ifndef _STATFS_H
4 #define _STATFS_H
6 #ifndef _TYPES_H
7 #include <minix/types.h>
8 #endif
10 struct statfs {
11 off_t f_bsize; /* file system block size */
14 _PROTOTYPE( int fstatfs, (int fd, struct statfs *st) );
16 #endif /* _STATFS_H */