1570af302Sopenharmony_ci#define _GNU_SOURCE 2570af302Sopenharmony_ci#include <sched.h> 3570af302Sopenharmony_ci#include "syscall.h" 4570af302Sopenharmony_ci 5570af302Sopenharmony_ciint setns(int fd, int nstype) 6570af302Sopenharmony_ci{ 7570af302Sopenharmony_ci return syscall(SYS_setns, fd, nstype); 8570af302Sopenharmony_ci} 9