use struct pt_regs * rather than void * for powerpc[64] sigcontext regs
[musl] / src / stdlib / llabs.c
1 #include <stdlib.h>
2
3 long long llabs(long long a)
4 {
5         return a>0 ? a : -a;
6 }