make CMPLX macros available in complex.h in non-c11 mode as well
[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