summaryrefslogtreecommitdiff
path: root/libm/e_atan2.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-11-21 21:27:22 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-11-21 21:27:22 +0000
commite4380762b35244c28a8feda5810c2f95f91f265c (patch)
treef79ec2d3f67125d1d5ee3ea98b2daad3f80f78c9 /libm/e_atan2.c
parente2d30731f8ced0389894f5cd1e81f484c50b1c02 (diff)
Hide all __kernel_x and __ieee754_
Diffstat (limited to 'libm/e_atan2.c')
-rw-r--r--libm/e_atan2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libm/e_atan2.c b/libm/e_atan2.c
index 8bfc79232..594b9a16f 100644
--- a/libm/e_atan2.c
+++ b/libm/e_atan2.c
@@ -57,9 +57,9 @@ pi = 3.1415926535897931160E+00, /* 0x400921FB, 0x54442D18 */
pi_lo = 1.2246467991473531772E-16; /* 0x3CA1A626, 0x33145C07 */
#ifdef __STDC__
- double __ieee754_atan2(double y, double x)
+ double attribute_hidden __ieee754_atan2(double y, double x)
#else
- double __ieee754_atan2(y,x)
+ double attribute_hidden __ieee754_atan2(y,x)
double y,x;
#endif
{