Sign in
android
/
platform
/
external
/
musl
/
3ea3fcf78a5532e118856846df8adbf3f60ef716
/
.
/
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
);
}