summaryrefslogtreecommitdiff
path: root/src/linux/umount.c
blob: fb9b5e73915d051dc197ede30b86cd79d661cb40 (plain) (blame)
1
2
3
4
5
6
7
#include <sys/mount.h>
#include "syscall.h"

int umount(const char *special)
{
	return syscall(SYS_umount2, special, 0);
}