remove __arch_prctl alias for arch_prctl
[musl] / src / linux / arch_prctl.c
1 #include "syscall.h"
2 #ifdef SYS_arch_prctl
3 int arch_prctl(int code, unsigned long addr)
4 {
5         return syscall(SYS_arch_prctl, code, addr);
6 }
7 #endif