summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/s_expm1f.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/s_expm1f.c')
-rw-r--r--lib/msun/src/s_expm1f.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/msun/src/s_expm1f.c b/lib/msun/src/s_expm1f.c
index 0fc0699..6ea4c5c 100644
--- a/lib/msun/src/s_expm1f.c
+++ b/lib/msun/src/s_expm1f.c
@@ -20,11 +20,7 @@ static char rcsid[] = "$FreeBSD$";
#include "math.h"
#include "math_private.h"
-#ifdef __STDC__
static const float
-#else
-static float
-#endif
one = 1.0,
huge = 1.0e+30,
tiny = 1.0e-30,
@@ -39,12 +35,7 @@ Q3 = -7.9365076090e-05, /* 0xb8a670cd */
Q4 = 4.0082177293e-06, /* 0x36867e54 */
Q5 = -2.0109921195e-07; /* 0xb457edbb */
-#ifdef __STDC__
float expm1f(float x)
-#else
- float expm1f(x)
- float x;
-#endif
{
float y,hi,lo,c,t,e,hxs,hfx,r1;
int32_t k,xsb;
OpenPOWER on IntegriCloud