Arnaldo Carvalho de Melo | 245aec7 | 2019-07-05 13:59:06 -0300 | [diff] [blame] | 1 | // SPDX-License-Identifier: LGPL-2.1 |
2 | |||||
3 | #include "namespaces.h" | ||||
Arnaldo Carvalho de Melo | 86bcdb5 | 2017-07-18 17:15:29 -0300 | [diff] [blame] | 4 | #include <unistd.h> |
5 | #include <sys/syscall.h> | ||||
6 | |||||
7 | int setns(int fd, int nstype) | ||||
8 | { | ||||
9 | return syscall(__NR_setns, fd, nstype); | ||||
10 | } |