summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/s_scalbn.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/s_scalbn.c')
-rw-r--r--lib/msun/src/s_scalbn.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/msun/src/s_scalbn.c b/lib/msun/src/s_scalbn.c
index b69bdcd..491e44c 100644
--- a/lib/msun/src/s_scalbn.c
+++ b/lib/msun/src/s_scalbn.c
@@ -24,22 +24,13 @@ static char rcsid[] = "$FreeBSD$";
#include "math.h"
#include "math_private.h"
-#ifdef __STDC__
static const double
-#else
-static double
-#endif
two54 = 1.80143985094819840000e+16, /* 0x43500000, 0x00000000 */
twom54 = 5.55111512312578270212e-17, /* 0x3C900000, 0x00000000 */
huge = 1.0e+300,
tiny = 1.0e-300;
-#ifdef __STDC__
double __generic_scalbn (double x, int n)
-#else
- double __generic_scalbn (x,n)
- double x; int n;
-#endif
{
int32_t k,hx,lx;
EXTRACT_WORDS(hx,lx,x);
OpenPOWER on IntegriCloud