summaryrefslogtreecommitdiff
path: root/include/sys/vfs.h
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-05-14 04:16:35 +0000
committerErik Andersen <andersen@codepoet.org>2000-05-14 04:16:35 +0000
commit64bc6412188b141c010ac3b8e813b837dd991e80 (patch)
treeffa12b79ea4b13191754f54b872eb1a4f9e3a04b /include/sys/vfs.h
Initial revision
Diffstat (limited to 'include/sys/vfs.h')
-rw-r--r--include/sys/vfs.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/sys/vfs.h b/include/sys/vfs.h
new file mode 100644
index 000000000..1018591b9
--- /dev/null
+++ b/include/sys/vfs.h
@@ -0,0 +1,17 @@
+#ifndef _SYS_VFS_H
+#define _SYS_VFS_H
+
+#include <features.h>
+#include <linux/vfs.h>
+
+__BEGIN_DECLS
+
+extern int __statfs __P ((__const char *__path, struct statfs *__buf));
+extern int statfs __P ((__const char *__path, struct statfs *__buf));
+
+extern int __fstatfs __P ((int __fildes, struct statfs *__buf));
+extern int fstatfs __P ((int __fildes, struct statfs *__buf));
+
+__END_DECLS
+
+#endif /*_SYS_VFS_H */