Sign in
mojo
/
mojo-tools
/
d1338e7457cb905801b6c300f0d74860e82c631d
/
.
/
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
);
}