mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-11-23 15:17:01 +00:00
9 lines
139 B
C
9 lines
139 B
C
|
|
#include "util.h"
|
||
|
|
#include <unistd.h>
|
||
|
|
#include <sys/syscall.h>
|
||
|
|
|
||
|
|
int setns(int fd, int nstype)
|
||
|
|
{
|
||
|
|
return syscall(__NR_setns, fd, nstype);
|
||
|
|
}
|