toaruos/libc/stdlib/labs.c

4 lines
56 B
C

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