Sign in
mojo
/
mojo-testing
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
linux
/
unshare.c
blob: 3861db3b205864d9fc9388b635162153bf685452 [
file
]
#define
_GNU_SOURCE
#include
<sched.h>
#include
"syscall.h"
int
unshare
(
int
flags
)
{
return
syscall
(
SYS_unshare
,
flags
);
}