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



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

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