diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-16 09:34:36 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:25 +0200 |
commit | b76e718f66ef93c6c998cb4096645101e028613e (patch) | |
tree | 0fb540a548040e5bee1002c25628d210835d979f /libm/e_pow.c | |
parent | c61c6d9880739d65e655d1e8b4b491a4010e49c9 (diff) |
libm: remove superfluos attribute_hidden, the one in prototype is enough
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libm/e_pow.c')
-rw-r--r-- | libm/e_pow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libm/e_pow.c b/libm/e_pow.c index 1be740e5e..4e22091be 100644 --- a/libm/e_pow.c +++ b/libm/e_pow.c @@ -91,7 +91,7 @@ ivln2 = 1.44269504088896338700e+00, /* 0x3FF71547, 0x652B82FE =1/ln2 */ ivln2_h = 1.44269502162933349609e+00, /* 0x3FF71547, 0x60000000 =24b 1/ln2*/ ivln2_l = 1.92596299112661746887e-08; /* 0x3E54AE0B, 0xF85DDF44 =1/ln2 tail*/ -double attribute_hidden __ieee754_pow(double x, double y) +double __ieee754_pow(double x, double y) { double z,ax,z_h,z_l,p_h,p_l; double _y1,t1,t2,r,s,t,u,v,w; |