summaryrefslogtreecommitdiff
path: root/lib/mlibc/options/posix/generic/sys-statvfs-stubs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mlibc/options/posix/generic/sys-statvfs-stubs.cpp')
-rw-r--r--lib/mlibc/options/posix/generic/sys-statvfs-stubs.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/lib/mlibc/options/posix/generic/sys-statvfs-stubs.cpp b/lib/mlibc/options/posix/generic/sys-statvfs-stubs.cpp
deleted file mode 100644
index c02cc39..0000000
--- a/lib/mlibc/options/posix/generic/sys-statvfs-stubs.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-#include <errno.h>
-#include <sys/statvfs.h>
-
-#include <bits/ensure.h>
-#include <mlibc/posix-sysdeps.hpp>
-
-int statvfs(const char *path, struct statvfs *out) {
- MLIBC_CHECK_OR_ENOSYS(mlibc::sys_statvfs, -1);
- if(int e = mlibc::sys_statvfs(path, out); e) {
- errno = e;
- return -1;
- }
- return 0;
-}
-
-int fstatvfs(int fd, struct statvfs *out) {
- MLIBC_CHECK_OR_ENOSYS(mlibc::sys_fstatvfs, -1);
- if(int e = mlibc::sys_fstatvfs(fd, out); e) {
- errno = e;
- return -1;
- }
- return 0;
-}
-