source:
trunk/minix/include/sys/statfs.h@
19
Last change on this file since 19 was 9, checked in by , 14 years ago | |
---|---|
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 | |
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.