summaryrefslogtreecommitdiff
path: root/libm/e_lgamma_r.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_lgamma_r.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_lgamma_r.c')
-rw-r--r--libm/e_lgamma_r.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libm/e_lgamma_r.c b/libm/e_lgamma_r.c
index dbb0a0d5d..519dd90bf 100644
--- a/libm/e_lgamma_r.c
+++ b/libm/e_lgamma_r.c
@@ -197,7 +197,7 @@ double sin_pi(double x)
return -y;
}
-double attribute_hidden __ieee754_lgamma_r(double x, int *signgamp)
+double __ieee754_lgamma_r(double x, int *signgamp)
{
double t,y,z,nadj=0,p,p1,p2,p3,q,r,w;
int i,hx,lx,ix;
@@ -318,7 +318,7 @@ strong_alias(__ieee754_lgamma_r, lgamma_r)
/* __ieee754_lgamma(x)
* Return the logarithm of the Gamma function of x.
*/
-double attribute_hidden __ieee754_lgamma(double x)
+double __ieee754_lgamma(double x)
{
return __ieee754_lgamma_r(x, &signgam);
}