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

int umount(const char *special)
{
	return syscall1(__NR_umount, (long)special);
}