FENIX_libc/stdlib/labs.c

7 lines
94 B
C
Raw Normal View History

2020-12-01 23:40:03 +00:00
#include <stdlib.h>
long int labs(long int x) {
long int y = x < 0 ? -x : x;
return y;
}