summaryrefslogtreecommitdiff
path: root/lib/libc/sys/umount2.c
blob: 885434508cbe019cce800f461e213cc6a5819c37 (plain)
1
2
3
4
5
6
7
8


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

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