diff options
Diffstat (limited to 'libm/e_hypot.c')
-rw-r--r-- | libm/e_hypot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libm/e_hypot.c b/libm/e_hypot.c index 75674548e..e34338695 100644 --- a/libm/e_hypot.c +++ b/libm/e_hypot.c @@ -44,7 +44,7 @@ #include "math.h" #include "math_private.h" -double attribute_hidden __ieee754_hypot(double x, double y) +double __ieee754_hypot(double x, double y) { double a=x,b=y,t1,t2,_y1,y2,w; int32_t j,k,ha,hb; |