use umount2 syscall for umount (new targets lack old 1-arg umount)
[oweals/musl.git] / src / linux / umount.c
index c35f994d99914381ddad1b1ef7b6532e21d60c3c..f709b33a92db4e631a6dceb748aba97690956499 100644 (file)
@@ -1,8 +1,7 @@
 #include <sys/mount.h>
-#define SYSCALL_STANDALONE
 #include "syscall.h"
 
 int umount(const char *special)
 {
-       return syscall1(__NR_umount, (long)special);
+       return syscall2(__NR_umount2, (long)special, 0);
 }