minix/include/sys/statfs.h

16 lines
245 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
/* Data for fstatfs() call. */
#ifndef _STATFS_H
#define _STATFS_H
#include <sys/cdefs.h>
#include <sys/types.h>
2005-04-21 16:53:53 +02:00
struct statfs {
int f_bsize; /* file system block size */
2005-04-21 16:53:53 +02:00
};
int fstatfs(int fd, struct statfs *st);
2005-04-21 16:53:53 +02:00
#endif /* _STATFS_H */