32 #ifdef POK_NEEDS_LIBMATH
39 #include "namespace.h"
40 #include "math_private.h"
43 __weak_alias(hypotf, _hypotf)
47 hypotf(
float x,
float y)
50 return __ieee754_hypotf(x,y);
53 z = __ieee754_hypotf(x,y);
54 if(_LIB_VERSION == _IEEE_)
return z;
55 if((!finitef(z))&&finitef(x)&&finitef(y))
57 return (
float)__kernel_standard((
double)x,(
double)y,104);