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_acos.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_acos.c')
-rw-r--r-- | libm/e_acos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libm/e_acos.c b/libm/e_acos.c index e64ac6485..8d2c880ac 100644 --- a/libm/e_acos.c +++ b/libm/e_acos.c @@ -52,7 +52,7 @@ qS2 = 2.02094576023350569471e+00, /* 0x40002AE5, 0x9C598AC8 */ qS3 = -6.88283971605453293030e-01, /* 0xBFE6066C, 0x1B8D0159 */ qS4 = 7.70381505559019352791e-02; /* 0x3FB3B8C5, 0xB12E9282 */ -double attribute_hidden __ieee754_acos(double x) +double __ieee754_acos(double x) { double z,p,q,r,w,s,c,df; int32_t hx,ix; |