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/k_rem_pio2.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/k_rem_pio2.c')
-rw-r--r-- | libm/k_rem_pio2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libm/k_rem_pio2.c b/libm/k_rem_pio2.c index e34b2c8d4..17ea9386c 100644 --- a/libm/k_rem_pio2.c +++ b/libm/k_rem_pio2.c @@ -147,7 +147,7 @@ one = 1.0, two24 = 1.67772160000000000000e+07, /* 0x41700000, 0x00000000 */ twon24 = 5.96046447753906250000e-08; /* 0x3E700000, 0x00000000 */ -int attribute_hidden __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec, const int32_t *ipio2) +int __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec, const int32_t *ipio2) { int32_t jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; double z,fw,f[20],fq[20],q[20]; |