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