FENIX_libc/math/fabsf.c
2020-12-01 17:40:03 -06:00

11 lines
104 B
C

#include <math.h>
float fabsf(float x) {
if(x < 0) {
return -x;
}
else {
return x;
}
}