FENIX_libc/math/fabs.c

11 lines
105 B
C
Raw Permalink Normal View History

2020-12-01 23:40:03 +00:00
#include <math.h>
double fabs(double x) {
if(x < 0) {
return -x;
}
else {
return x;
}
}