source: branches/minix3-book/include/sys/statfs.h@ 4

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

Importazione sorgenti libro

File size: 265 bytes
RevLine 
[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
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.