summaryrefslogtreecommitdiff
path: root/lib/libc/sys/umount.c
blob: ae1ecf8af3f2d7411a35868da9fe9948c0a81b04 (plain)
1
2
3
4
5
6
#include <syscall.h>

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