summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/s_log1p.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/s_log1p.c')
-rw-r--r--lib/msun/src/s_log1p.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/msun/src/s_log1p.c b/lib/msun/src/s_log1p.c
index 0a60f95..18cc8f8 100644
--- a/lib/msun/src/s_log1p.c
+++ b/lib/msun/src/s_log1p.c
@@ -82,11 +82,7 @@ static char rcsid[] = "$FreeBSD$";
#include "math.h"
#include "math_private.h"
-#ifdef __STDC__
static const double
-#else
-static double
-#endif
ln2_hi = 6.93147180369123816490e-01, /* 3fe62e42 fee00000 */
ln2_lo = 1.90821492927058770002e-10, /* 3dea39ef 35793c76 */
two54 = 1.80143985094819840000e+16, /* 43500000 00000000 */
@@ -98,18 +94,9 @@ Lp5 = 1.818357216161805012e-01, /* 3FC74664 96CB03DE */
Lp6 = 1.531383769920937332e-01, /* 3FC39A09 D078C69F */
Lp7 = 1.479819860511658591e-01; /* 3FC2F112 DF3E5244 */
-#ifdef __STDC__
static const double zero = 0.0;
-#else
-static double zero = 0.0;
-#endif
-#ifdef __STDC__
double log1p(double x)
-#else
- double log1p(x)
- double x;
-#endif
{
double hfsq,f,c,s,z,R,u;
int32_t k,hx,hu,ax;
OpenPOWER on IntegriCloud