1 /*
2  * setns() for uClibc
3  *
4  * Copyright (C) 2015 Bernhard Reutner-Fischer <uclibc@uclibc.org>
5  *
6  * Licensed under the LGPL v2.1 or later, see the file COPYING.LIB in this tarball.
7  */
8 
9 #include <sys/syscall.h>
10 #include <sched.h>
11 
12 #ifdef __NR_setns
13 _syscall2(int, setns, int, fd, int, nstype)
14 #endif
15