summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/linux/prctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/linux/prctl.c')
-rw-r--r--libc-top-half/musl/src/linux/prctl.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/linux/prctl.c b/libc-top-half/musl/src/linux/prctl.c
new file mode 100644
index 0000000..19f4267
--- /dev/null
+++ b/libc-top-half/musl/src/linux/prctl.c
@@ -0,0 +1,14 @@
+#include <sys/prctl.h>
+#include <stdarg.h>
+#include "syscall.h"
+
+int prctl(int op, ...)
+{
+ unsigned long x[4];
+ int i;
+ va_list ap;
+ va_start(ap, op);
+ for (i=0; i<4; i++) x[i] = va_arg(ap, unsigned long);
+ va_end(ap);
+ return syscall(SYS_prctl, op, x[0], x[1], x[2], x[3]);
+}