blob: 3861db3b205864d9fc9388b635162153bf685452 [file] [log] [blame]
#define _GNU_SOURCE
#include <sched.h>
#include "syscall.h"
int unshare(int flags)
{
return syscall(SYS_unshare, flags);
}