debloat src/thread tree but putting lots of junk in one file
[oweals/musl.git] / src / linux / prctl.c
index d55168303c3150a2f9b1e4d667446f5aed38c163..19f4267cdeda4563fae0996b138cca04803746a4 100644 (file)
@@ -9,5 +9,6 @@ int prctl(int op, ...)
        va_list ap;
        va_start(ap, op);
        for (i=0; i<4; i++) x[i] = va_arg(ap, unsigned long);
-       return syscall5(__NR_prctl, op, x[0], x[1], x[2], x[3]);
+       va_end(ap);
+       return syscall(SYS_prctl, op, x[0], x[1], x[2], x[3]);
 }