1 #define _GNU_SOURCE 2 #include <sched.h> 3 #include "syscall.h" 4 setns(int fd,int nstype)5 int setns(int fd, int nstype) 6 { 7 return syscall(SYS_setns, fd, nstype); 8 } 9