blob: fa47c68ecbe2fd8d19b956cb9ea7dd280bfe2d5e [file] [log] [blame]
#define _GNU_SOURCE
#include <sched.h>
#include "syscall.h"
int setns(int fd, int nstype) {
return syscall(SYS_setns, fd, nstype);
}