[Midnightbsd-cvs] src [10600] trunk/lib/msun/bsdsrc: sync
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sat Jun 9 11:14:14 EDT 2018
Revision: 10600
http://svnweb.midnightbsd.org/src/?rev=10600
Author: laffer1
Date: 2018-06-09 11:14:14 -0400 (Sat, 09 Jun 2018)
Log Message:
-----------
sync
Modified Paths:
--------------
trunk/lib/msun/bsdsrc/b_exp.c
trunk/lib/msun/bsdsrc/b_log.c
Modified: trunk/lib/msun/bsdsrc/b_exp.c
===================================================================
--- trunk/lib/msun/bsdsrc/b_exp.c 2018-06-09 15:13:23 UTC (rev 10599)
+++ trunk/lib/msun/bsdsrc/b_exp.c 2018-06-09 15:14:14 UTC (rev 10600)
@@ -35,7 +35,6 @@
#include <sys/cdefs.h>
__MBSDID("$MidnightBSD$");
-
/* EXP(X)
* RETURN THE EXPONENTIAL OF X
* DOUBLE PRECISION (IEEE 53 bits, VAX D FORMAT 56 BITS)
@@ -74,16 +73,16 @@
#include "mathimpl.h"
-const static double p1 = 0x1.555555555553ep-3;
-const static double p2 = -0x1.6c16c16bebd93p-9;
-const static double p3 = 0x1.1566aaf25de2cp-14;
-const static double p4 = -0x1.bbd41c5d26bf1p-20;
-const static double p5 = 0x1.6376972bea4d0p-25;
-const static double ln2hi = 0x1.62e42fee00000p-1;
-const static double ln2lo = 0x1.a39ef35793c76p-33;
-const static double lnhuge = 0x1.6602b15b7ecf2p9;
-const static double lntiny = -0x1.77af8ebeae354p9;
-const static double invln2 = 0x1.71547652b82fep0;
+static const double p1 = 0x1.555555555553ep-3;
+static const double p2 = -0x1.6c16c16bebd93p-9;
+static const double p3 = 0x1.1566aaf25de2cp-14;
+static const double p4 = -0x1.bbd41c5d26bf1p-20;
+static const double p5 = 0x1.6376972bea4d0p-25;
+static const double ln2hi = 0x1.62e42fee00000p-1;
+static const double ln2lo = 0x1.a39ef35793c76p-33;
+static const double lnhuge = 0x1.6602b15b7ecf2p9;
+static const double lntiny = -0x1.77af8ebeae354p9;
+static const double invln2 = 0x1.71547652b82fep0;
#if 0
double exp(x)
Modified: trunk/lib/msun/bsdsrc/b_log.c
===================================================================
--- trunk/lib/msun/bsdsrc/b_log.c 2018-06-09 15:13:23 UTC (rev 10599)
+++ trunk/lib/msun/bsdsrc/b_log.c 2018-06-09 15:14:14 UTC (rev 10600)
@@ -36,7 +36,6 @@
__MBSDID("$MidnightBSD$");
#include <math.h>
-#include <errno.h>
#include "mathimpl.h"
More information about the Midnightbsd-cvs
mailing list