OSDN Git Service

test: Fix math .c dependency
[uclinux-h8/uClibc.git] / libm / e_atan2.c
index 65f2924..ef7ffa9 100644 (file)
@@ -47,7 +47,7 @@ pi_o_2  = 1.5707963267948965580E+00, /* 0x3FF921FB, 0x54442D18 */
 pi      = 3.1415926535897931160E+00, /* 0x400921FB, 0x54442D18 */
 pi_lo   = 1.2246467991473531772E-16; /* 0x3CA1A626, 0x33145C07 */
 
-double attribute_hidden __ieee754_atan2(double y, double x)
+double __ieee754_atan2(double y, double x)
 {
        double z;
        int32_t k,m,hx,hy,ix,iy;
@@ -121,7 +121,7 @@ double attribute_hidden __ieee754_atan2(double y, double x)
 #ifndef _IEEE_LIBM
 double atan2(double y, double x)
 {
-       double z = __ieee754_atan2(y,x);
+       double z = __ieee754_atan2(y, x);
        if (_LIB_VERSION == _IEEE_ || isnan(x) || isnan(y))
                return z;
        if (x == 0.0 && y == 0.0)