source: trunk/minix/include/sys/statfs.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 265 bytes
Line 
1/* Data for fstatfs() call. */
2
3#ifndef _STATFS_H
4#define _STATFS_H
5
6#ifndef _TYPES_H
7#include <sys/types.h>
8#endif
9
10struct statfs {
11 off_t f_bsize; /* file system block size */
12};
13
14_PROTOTYPE( int fstatfs, (int fd, struct statfs *st) );
15
16#endif /* _STATFS_H */
Note: See TracBrowser for help on using the repository browser.