toaruos/libc/stdlib/labs.c
2018-05-09 16:55:10 +09:00

4 lines
56 B
C

long int labs(long int j) {
return (j < 0) ? -j : j;
}