Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
2af3006b0ccf36ba9ac5123f539d577fd97c5350
/
.
/
src
/
linux
/
setns.c
blob: 0afec813f126c9d21b41d879ad930bbe48bfc0ea [
file
]
#define
_GNU_SOURCE
#include
<sched.h>
#include
"syscall.h"
int
setns
(
int
fd
,
int
nstype
)
{
return
syscall
(
SYS_setns
,
fd
,
nstype
);
}