FENIX_libc/stdlib/labs.c

7 lines
94 B
C

#include <stdlib.h>
long int labs(long int x) {
long int y = x < 0 ? -x : x;
return y;
}