diff options
Diffstat (limited to 'lib/mlibc/options/posix/generic/sys-statvfs-stubs.cpp')
-rw-r--r-- | lib/mlibc/options/posix/generic/sys-statvfs-stubs.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/mlibc/options/posix/generic/sys-statvfs-stubs.cpp b/lib/mlibc/options/posix/generic/sys-statvfs-stubs.cpp new file mode 100644 index 0000000..c02cc39 --- /dev/null +++ b/lib/mlibc/options/posix/generic/sys-statvfs-stubs.cpp @@ -0,0 +1,24 @@ +#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; +} + |