home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / armlinux / alpha / PARTITIONS / USR_GZ / usr / include / sys / vfs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-14  |  408 b   |  18 lines

  1. #ifndef _SYS_VFS_H
  2. #define _SYS_VFS_H
  3.  
  4. #include <features.h>
  5. #include <linux/vfs.h>
  6.  
  7. __BEGIN_DECLS
  8.  
  9. extern int __statfs __P ((__const char *__path, struct statfs *__buf));
  10. extern int statfs __P ((__const char *__path, struct statfs *__buf));
  11.  
  12. extern int __fstatfs __P ((int __fildes, struct statfs *__buf));
  13. extern int fstatfs __P ((int __fildes, struct statfs *__buf));
  14.  
  15. __END_DECLS
  16.  
  17. #endif /*_SYS_VFS_H */
  18.