summaryrefslogtreecommitdiff
path: root/src/sys/statvfs/fstatvfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/statvfs/fstatvfs.c')
-rw-r--r--src/sys/statvfs/fstatvfs.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/sys/statvfs/fstatvfs.c b/src/sys/statvfs/fstatvfs.c
new file mode 100644
index 00000000..75011633
--- /dev/null
+++ b/src/sys/statvfs/fstatvfs.c
@@ -0,0 +1,11 @@
+#include <sys/statvfs.h>
+
+int fstatvfs(int fildes, struct statvfs *buf)
+{
+ return -1;
+}
+
+/*
+XOPEN(400)
+POSIX(200809)
+*/