add and consolidate nasty stdio_ext junk
[oweals/musl.git] / src / stdlib / labs.c
1 long labs(long a)
2 {
3         return a>0 ? a : -a;
4 }