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

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