vfs.h 408 B

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