source:
branches/minix3-book/include/sys/statfs.h@
12
| Last change on this file since 12 was 4, checked in by , 15 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.