summaryrefslogtreecommitdiff
path: root/src/sysdeps
diff options
context:
space:
mode:
Diffstat (limited to 'src/sysdeps')
-rw-r--r--src/sysdeps/trynsgetparent.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/sysdeps/trynsgetparent.c b/src/sysdeps/trynsgetparent.c
new file mode 100644
index 0000000..393a9a7
--- /dev/null
+++ b/src/sysdeps/trynsgetparent.c
@@ -0,0 +1,12 @@
+/* ISC license. */
+
+#undef _POSIX_C_SOURCE
+#undef _XOPEN_SOURCE
+
+#include <sys/ioctl.h>
+#include <linux/nsfs.h>
+
+int main (void)
+{
+ return ioctl(0, NS_GET_PARENT) ;
+}