summaryrefslogtreecommitdiff
path: root/src/stat/fstatvfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stat/fstatvfs.c')
-rw-r--r--src/stat/fstatvfs.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/stat/fstatvfs.c b/src/stat/fstatvfs.c
new file mode 100644
index 00000000..83bd7486
--- /dev/null
+++ b/src/stat/fstatvfs.c
@@ -0,0 +1,13 @@
+#include <sys/statvfs.h>
+#include "syscall.h"
+#include "libc.h"
+
+int fstatvfs(int fd, struct statvfs *buf)
+{
+ return syscall2(__NR_fstatfs64, fd, (long)buf);
+}
+
+weak_alias(fstatvfs, fstatfs);
+
+LFS64(fstatvfs);
+LFS64(fstatfs);