29 #ifdef POK_NEEDS_LIBMATH
36 #include "namespace.h"
37 #include "math_private.h"
40 __weak_alias(hypot, _hypot)
44 hypot(
double x,
double y)
47 return __ieee754_hypot(x,y);
50 z = __ieee754_hypot(x,y);
51 if(_LIB_VERSION == _IEEE_)
return z;
52 if((!finite(z))&&finite(x)&&finite(y))
53 return __kernel_standard(x,y,4);