diff options
Diffstat (limited to 'src/linux/umount.c')
-rw-r--r-- | src/linux/umount.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/linux/umount.c b/src/linux/umount.c new file mode 100644 index 0000000..c35f994 --- /dev/null +++ b/src/linux/umount.c @@ -0,0 +1,8 @@ +#include <sys/mount.h> +#define SYSCALL_STANDALONE +#include "syscall.h" + +int umount(const char *special) +{ + return syscall1(__NR_umount, (long)special); +} |