remove no-longer-needed special case handling in popen
[musl] / src / linux / setns.c
index af3eb09..0afec81 100644 (file)
@@ -1,9 +1,8 @@
 #define _GNU_SOURCE
 #include <sched.h>
 #include "syscall.h"
-#include "libc.h"
 
 int setns(int fd, int nstype)
 {
-        return syscall(SYS_setns, fd, nstype);
+       return syscall(SYS_setns, fd, nstype);
 }