summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/s_log1pf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/s_log1pf.c')
-rw-r--r--lib/msun/src/s_log1pf.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/msun/src/s_log1pf.c b/lib/msun/src/s_log1pf.c
index 2923d01..c25d930 100644
--- a/lib/msun/src/s_log1pf.c
+++ b/lib/msun/src/s_log1pf.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
ln2_hi = 6.9313812256e-01, /* 0x3f317180 */
ln2_lo = 9.0580006145e-06, /* 0x3717f7d1 */
two25 = 3.355443200e+07, /* 0x4c000000 */
@@ -36,18 +32,9 @@ Lp5 = 1.8183572590e-01, /* 3E3A3325 */
Lp6 = 1.5313838422e-01, /* 3E1CD04F */
Lp7 = 1.4798198640e-01; /* 3E178897 */
-#ifdef __STDC__
static const float zero = 0.0;
-#else
-static float zero = 0.0;
-#endif
-#ifdef __STDC__
float log1pf(float x)
-#else
- float log1pf(x)
- float x;
-#endif
{
float hfsq,f,c,s,z,R,u;
int32_t k,hx,hu,ax;
OpenPOWER on IntegriCloud