FENIX_libc/math/fabsl.c

11 lines
116 B
C

#include <math.h>
long double fabsl(long double x) {
if(x < 0) {
return -x;
}
else {
return x;
}
}