Sign in
mojo
/
mojo-testing
/
bbc0e088b4a3b02a89b563db78314a89d560be7f
/
.
/
fusl
/
src
/
linux
/
setns.c
blob: fa47c68ecbe2fd8d19b956cb9ea7dd280bfe2d5e [
file
]
#define
_GNU_SOURCE
#include
<sched.h>
#include
"syscall.h"
int
setns
(
int
fd
,
int
nstype
)
{
return
syscall
(
SYS_setns
,
fd
,
nstype
);
}