source:
branches/minix3-book/include/sys/statfs.h@
15
Last change on this file since 15 was 4, checked in by , 14 years ago | |
---|---|
File size: 265 bytes |
Rev | Line | |
---|---|---|
[4] | 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 | ||
10 | struct 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.