#define _GNU_SOURCE #include #include "syscall.h" int unshare(int flags) { return syscall(SYS_unshare, flags); }