summaryrefslogtreecommitdiff
path: root/libm/e_jn.c
diff options
context:
space:
mode:
Diffstat (limited to 'libm/e_jn.c')
-rw-r--r--libm/e_jn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libm/e_jn.c b/libm/e_jn.c
index 27a8a1969..870824cf8 100644
--- a/libm/e_jn.c
+++ b/libm/e_jn.c
@@ -66,7 +66,7 @@ static double zero = 0.00000000000000000000e+00;
#endif
{
int32_t i,hx,ix,lx, sgn;
- double a, b, temp, di;
+ double a, b, temp=0, di;
double z, w;
/* J(-n,x) = (-1)^n * J(n, x), J(n, -x) = (-1)^n * J(n, x)
@@ -227,7 +227,7 @@ static double zero = 0.00000000000000000000e+00;
{
int32_t i,hx,ix,lx;
int32_t sign;
- double a, b, temp;
+ double a, b, temp=0;
EXTRACT_WORDS(hx,lx,x);
ix = 0x7fffffff&hx;