#include #include "private.h" float hypotf(float x, float y) /* wrapper hypotf */ { // #ifdef _IEEE_LIBM return __ieee754_hypotf(x,y); // #else // float z; // z = __ieee754_hypotf(x,y); // if(_LIB_VERSION == _IEEE_) return z; // if((!finitef(z))&&finitef(x)&&finitef(y)) // /* hypot overflow */ // return (float)__kernel_standard((double)x,(double)y,104); // else // return z; // #endif }