Drop main() prototype. Syncs with NetBSD-8
[minix.git] / minix / include / sys / statfs.h
bloba80eef121d550b165e41de01756c4cabffbfe7eb
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 int f_bsize; /* file system block size */
13 int fstatfs(int fd, struct statfs *st);
15 #endif /* _STATFS_H */