summaryrefslogtreecommitdiff
path: root/src/linux/umount2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/linux/umount2.c')
-rw-r--r--src/linux/umount2.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/linux/umount2.c b/src/linux/umount2.c
new file mode 100644
index 00000000..cab93fd0
--- /dev/null
+++ b/src/linux/umount2.c
@@ -0,0 +1,8 @@
+#include <sys/mount.h>
+#define SYSCALL_STANDALONE
+#include "syscall.h"
+
+int umount2(const char *special, int flags)
+{
+ return syscall2(__NR_umount2, (long)special, flags);
+}