mirror of https://git.musl-libc.org/git/musl
1 changed files with 9 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||||
|
#include "syscall.h" |
||||
|
#ifdef SYS_arch_prctl |
||||
|
#include "libc.h" |
||||
|
int __arch_prctl(int code, unsigned long addr) |
||||
|
{ |
||||
|
return syscall(SYS_arch_prctl, code, addr); |
||||
|
} |
||||
|
weak_alias(__arch_prctl, arch_prctl); |
||||
|
#endif |
||||
Loading…
Reference in new issue