summaryrefslogtreecommitdiff
path: root/libm/e_j1.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-03-16 09:34:36 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-06-15 14:00:25 +0200
commitb76e718f66ef93c6c998cb4096645101e028613e (patch)
tree0fb540a548040e5bee1002c25628d210835d979f /libm/e_j1.c
parentc61c6d9880739d65e655d1e8b4b491a4010e49c9 (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_j1.c')
-rw-r--r--libm/e_j1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libm/e_j1.c b/libm/e_j1.c
index 1f674e9cf..807edd8ba 100644
--- a/libm/e_j1.c
+++ b/libm/e_j1.c
@@ -77,7 +77,7 @@ s05 = 1.23542274426137913908e-11; /* 0x3DAB2ACF, 0xCFB97ED8 */
static const double zero = 0.0;
-double attribute_hidden __ieee754_j1(double x)
+double __ieee754_j1(double x)
{
double z, s,c,ss,cc,r,u,v,y;
int32_t hx,ix;
@@ -150,7 +150,7 @@ static const double V0[5] = {
1.66559246207992079114e-11, /* 0x3DB25039, 0xDACA772A */
};
-double attribute_hidden __ieee754_y1(double x)
+double __ieee754_y1(double x)
{
double z, s,c,ss,cc,u,v;
int32_t hx,ix,lx;