summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/e_jn.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/e_jn.c')
-rw-r--r--lib/msun/src/e_jn.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/msun/src/e_jn.c b/lib/msun/src/e_jn.c
index cfe26e8..eac6abd 100644
--- a/lib/msun/src/e_jn.c
+++ b/lib/msun/src/e_jn.c
@@ -43,27 +43,14 @@ static char rcsid[] = "$FreeBSD$";
#include "math.h"
#include "math_private.h"
-#ifdef __STDC__
static const double
-#else
-static double
-#endif
invsqrtpi= 5.64189583547756279280e-01, /* 0x3FE20DD7, 0x50429B6D */
two = 2.00000000000000000000e+00, /* 0x40000000, 0x00000000 */
one = 1.00000000000000000000e+00; /* 0x3FF00000, 0x00000000 */
-#ifdef __STDC__
static const double zero = 0.00000000000000000000e+00;
-#else
-static double zero = 0.00000000000000000000e+00;
-#endif
-#ifdef __STDC__
double __ieee754_jn(int n, double x)
-#else
- double __ieee754_jn(n,x)
- int n; double x;
-#endif
{
int32_t i,hx,ix,lx, sgn;
double a, b, temp, di;
@@ -218,12 +205,7 @@ static double zero = 0.00000000000000000000e+00;
if(sgn==1) return -b; else return b;
}
-#ifdef __STDC__
double __ieee754_yn(int n, double x)
-#else
- double __ieee754_yn(n,x)
- int n; double x;
-#endif
{
int32_t i,hx,ix,lx;
int32_t sign;
OpenPOWER on IntegriCloud