blob: 25ad057cda35fdc8fc73419819e0b654bedba9e2 [file] [log] [blame]
#include <sys/mount.h>
#include "syscall.h"
int umount2(const char *special, int flags)
{
return syscall(SYS_umount2, special, flags);
}