summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/e_exp.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1996-07-12 18:57:58 +0000
committerjkh <jkh@FreeBSD.org>1996-07-12 18:57:58 +0000
commitc4d4a99d31762beef936f34571330923e9300da9 (patch)
treec116431af8e1f042b25e0f70c63c437cf7ff8d63 /lib/msun/src/e_exp.c
parent6657f01bfd009bbf4ec0481a17712259abf8ea77 (diff)
downloadFreeBSD-src-c4d4a99d31762beef936f34571330923e9300da9.zip
FreeBSD-src-c4d4a99d31762beef936f34571330923e9300da9.tar.gz
General -Wall warning cleanup, part I.
Submitted-By: Kent Vander Velden <graphix@iastate.edu>
Diffstat (limited to 'lib/msun/src/e_exp.c')
-rw-r--r--lib/msun/src/e_exp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/msun/src/e_exp.c b/lib/msun/src/e_exp.c
index 9b833be..3777a6f 100644
--- a/lib/msun/src/e_exp.c
+++ b/lib/msun/src/e_exp.c
@@ -11,7 +11,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: e_exp.c,v 1.1.1.1 1994/08/19 09:39:43 jkh Exp $";
+static char rcsid[] = "$Id: e_exp.c,v 1.2 1995/05/30 05:48:08 rgrimes Exp $";
#endif
/* __ieee754_exp(x)
@@ -110,8 +110,8 @@ P5 = 4.13813679705723846039e-08; /* 0x3E663769, 0x72BEA4D0 */
double x;
#endif
{
- double y,hi,lo,c,t;
- int32_t k,xsb;
+ double y,hi=0.0,lo=0.0,c,t;
+ int32_t k=0,xsb;
u_int32_t hx;
GET_HIGH_WORD(hx,x);
OpenPOWER on IntegriCloud