Initial revision

This commit is contained in:
Ben Gras
2005-04-21 14:53:53 +00:00
commit 9865aeaa79
2264 changed files with 411685 additions and 0 deletions

16
include/sys/statfs.h Normal file
View File

@@ -0,0 +1,16 @@
/* Data for fstatfs() call. */
#ifndef _STATFS_H
#define _STATFS_H
#ifndef _TYPES_H
#include <sys/types.h>
#endif
struct statfs {
off_t f_bsize; /* file system block size */
};
_PROTOTYPE( int fstatfs, (int fd, struct statfs *st) );
#endif /* _STATFS_H */