blob: 48f9c0af63b213722bf746e5a3afdb2799a4b27a [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: LGPL-2.1
2
3#include "namespaces.h"
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004#include <unistd.h>
5#include <sys/syscall.h>
6
7int setns(int fd, int nstype)
8{
9 return syscall(__NR_setns, fd, nstype);
10}