__fabsf
extern float __fabsf(float);
inline float abs(float __X) { return __fabsf(__X); }
inline float fabs(float __X) { return __fabsf(__X); }