aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/sysdeps/ironclad/generic/mount.cpp
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-03-07 17:28:52 -0500
committerIan Moffett <ian@osmora.org>2024-03-07 18:24:51 -0500
commitf5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 (patch)
tree93b156621dc0303816b37f60ba88051b702d92f6 /lib/mlibc/sysdeps/ironclad/generic/mount.cpp
parentbd5969fc876a10b18613302db7087ef3c40f18e1 (diff)
build: Build mlibc + add distclean target
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/sysdeps/ironclad/generic/mount.cpp')
-rw-r--r--lib/mlibc/sysdeps/ironclad/generic/mount.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/mlibc/sysdeps/ironclad/generic/mount.cpp b/lib/mlibc/sysdeps/ironclad/generic/mount.cpp
deleted file mode 100644
index feb6e4c..0000000
--- a/lib/mlibc/sysdeps/ironclad/generic/mount.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <errno.h>
-#include <sys/mount.h>
-#include <bits/ensure.h>
-#include <sys/syscall.h>
-#include <string.h>
-
-int mount(const char *source, const char *target, int type, int flags) {
- int ret;
- size_t source_len = strlen(source);
- size_t target_len = strlen(target);
- SYSCALL6(SYSCALL_MOUNT, source, source_len, target, target_len, type, flags);
- return ret;
-}
-
-int umount(const char *target, int flags) {
- int ret;
- size_t target_len = strlen(target);
- SYSCALL3(SYSCALL_UMOUNT, target, target_len, flags);
- return ret;
-}