kernel: maintain stack alignment
[minix3.git] / include / sys / statfs.h
blob064f0eb566b92a30eb8c1f0462d66a681a7c9d9e
1 /* Data for fstatfs() call. */
3 #ifndef _STATFS_H
4 #define _STATFS_H
6 #include <sys/cdefs.h>
7 #include <sys/types.h>
9 struct statfs {
10 off_t f_bsize; /* file system block size */
13 int fstatfs(int fd, struct statfs *st);
15 #endif /* _STATFS_H */