aboutsummaryrefslogtreecommitdiff
path: root/lib/sys/unmount.h
blob: 1331e65c5eb5e99d14d94f262cdb729a8e8572c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef UNMOUNT_H
#define UNMOUNT_H

#include "syscalls.h"

int unmount(char *pathname, int flags)
{
	return syscall(UMOUNT2, pathname, flags);
}

#endif