summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/s_scalbnf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/s_scalbnf.c')
-rw-r--r--lib/msun/src/s_scalbnf.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/msun/src/s_scalbnf.c b/lib/msun/src/s_scalbnf.c
index 7dd7595..562e395 100644
--- a/lib/msun/src/s_scalbnf.c
+++ b/lib/msun/src/s_scalbnf.c
@@ -20,22 +20,13 @@ static char rcsid[] = "$FreeBSD$";
#include "math.h"
#include "math_private.h"
-#ifdef __STDC__
static const float
-#else
-static float
-#endif
two25 = 3.355443200e+07, /* 0x4c000000 */
twom25 = 2.9802322388e-08, /* 0x33000000 */
huge = 1.0e+30,
tiny = 1.0e-30;
-#ifdef __STDC__
float scalbnf (float x, int n)
-#else
- float scalbn (x,n)
- float x; int n;
-#endif
{
int32_t k,ix;
GET_FLOAT_WORD(ix,x);
OpenPOWER on IntegriCloud