blob: f709b33a92db4e631a6dceb748aba97690956499 [file] [log] [blame]
#include <sys/mount.h>
#include "syscall.h"
int umount(const char *special)
{
return syscall2(__NR_umount2, (long)special, 0);
}