musl-tcc/src/linux/setns.c

9 lines
135 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#define _GNU_SOURCE
#include <sched.h>
#include "syscall.h"
int setns(int fd, int nstype)
{
return syscall(SYS_setns, fd, nstype);
}