Sign in
cobalt
/
cobalt
/
07081467c3d00b04a6a1162e0566a5a8b9cfe2d5
/
.
/
third_party
/
musl
/
src
/
linux
/
setns.c
blob: 0afec813f126c9d21b41d879ad930bbe48bfc0ea [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<sched.h>
#include
"syscall.h"
int
setns
(
int
fd
,
int
nstype
)
{
return
syscall
(
SYS_setns
,
fd
,
nstype
);
}