aboutsummaryrefslogtreecommitdiff
path: root/src/linux/prctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/linux/prctl.c')
-rw-r--r--src/linux/prctl.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/linux/prctl.c b/src/linux/prctl.c
index 19f4267c..d5288b66 100644
--- a/src/linux/prctl.c
+++ b/src/linux/prctl.c
@@ -12,3 +12,11 @@ int prctl(int op, ...)
va_end(ap);
return syscall(SYS_prctl, op, x[0], x[1], x[2], x[3]);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif