1*433d6423SLionel Sambuc /* Data for fstatfs() call. */ 2*433d6423SLionel Sambuc 3*433d6423SLionel Sambuc #ifndef _STATFS_H 4*433d6423SLionel Sambuc #define _STATFS_H 5*433d6423SLionel Sambuc 6*433d6423SLionel Sambuc #include <sys/cdefs.h> 7*433d6423SLionel Sambuc #include <sys/types.h> 8*433d6423SLionel Sambuc 9*433d6423SLionel Sambuc struct statfs { 10*433d6423SLionel Sambuc int f_bsize; /* file system block size */ 11*433d6423SLionel Sambuc }; 12*433d6423SLionel Sambuc 13*433d6423SLionel Sambuc int fstatfs(int fd, struct statfs *st); 14*433d6423SLionel Sambuc 15*433d6423SLionel Sambuc #endif /* _STATFS_H */ 16