summaryrefslogtreecommitdiff
path: root/lib/libc/sys/umount.c
blob: 10db78853192e80a3487b379fc8f8b7bc6d90e4a (plain)
1
2
3
4
5
6
7
8


#include <syscall.h> // for __syscall_2, syscall

int umount(const char *target)
{
	return syscall(umount2, target, 0);
}