diff options
Diffstat (limited to 'lib/libc/sys/umount2.c')
| -rw-r--r-- | lib/libc/sys/umount2.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/libc/sys/umount2.c b/lib/libc/sys/umount2.c new file mode 100644 index 00000000..a75588a8 --- /dev/null +++ b/lib/libc/sys/umount2.c @@ -0,0 +1,6 @@ +#include <syscall.h> + +int umount2(const char *target, int flags) +{ + return syscall(umount2, target, flags); +} |
