diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-17 00:01:09 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-17 00:01:09 +0000 |
commit | 9cc29786d72e56085fc61473bd51e8829dc17bad (patch) | |
tree | cfb416a7cd67c563d31aae44b949427dee97dfdc /libm/s_scalbn.c | |
parent | 3f87a95da89a18c428efbeb67268b5201da89281 (diff) |
All math related relocs gone
Diffstat (limited to 'libm/s_scalbn.c')
-rw-r--r-- | libm/s_scalbn.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libm/s_scalbn.c b/libm/s_scalbn.c index 9bb054ac4..6a7452485 100644 --- a/libm/s_scalbn.c +++ b/libm/s_scalbn.c @@ -24,6 +24,8 @@ static char rcsid[] = "$NetBSD: s_scalbn.c,v 1.8 1995/05/10 20:48:08 jtc Exp $"; #include "math.h" #include "math_private.h" +libm_hidden_proto(copysign) + #ifdef __STDC__ static const double #else @@ -34,6 +36,7 @@ twom54 = 5.55111512312578270212e-17, /* 0x3C900000, 0x00000000 */ huge = 1.0e+300, tiny = 1.0e-300; +libm_hidden_proto(scalbn) #ifdef __STDC__ double scalbn (double x, int n) #else @@ -65,3 +68,4 @@ tiny = 1.0e-300; SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20)); return x*twom54; } +libm_hidden_def(scalbn) |