mirror of
https://github.com/fluencelabs/musl
synced 2025-06-03 10:01:38 +00:00
10 lines
160 B
C
10 lines
160 B
C
|
#define _GNU_SOURCE
|
||
|
#include <sched.h>
|
||
|
#include "syscall.h"
|
||
|
#include "libc.h"
|
||
|
|
||
|
int setns(int fd, int nstype)
|
||
|
{
|
||
|
return syscall(SYS_setns, fd, nstype);
|
||
|
}
|