add <syscall.h> as an alias for <sys/syscall.h>
[musl] / src / stdlib / abs.c
1 int abs(int a)
2 {
3         return a>0 ? a : -a;
4 }