summaryrefslogtreecommitdiff
path: root/libm/e_asin.c
diff options
context:
space:
mode:
authorDavid McCullough <davidm@snapgear.com>2002-08-09 13:03:00 +0000
committerDavid McCullough <davidm@snapgear.com>2002-08-09 13:03:00 +0000
commitbea67a752df6f8e1dfce75592fb7c371e5c8a212 (patch)
treec9b547baafaae100ab2c34ef6930ba48a1a5a736 /libm/e_asin.c
parent54e4a312a7ac8609604d922950d29f618d1cb04c (diff)
Fix a number of compile time warnings so that uClibc will build with -Werror using
a 3.0.4 version of the sh-linux-gcc compiler.
Diffstat (limited to 'libm/e_asin.c')
-rw-r--r--libm/e_asin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libm/e_asin.c b/libm/e_asin.c
index 46b93d8c0..210fdbf3b 100644
--- a/libm/e_asin.c
+++ b/libm/e_asin.c
@@ -77,7 +77,7 @@ qS4 = 7.70381505559019352791e-02; /* 0x3FB3B8C5, 0xB12E9282 */
double x;
#endif
{
- double t,w,p,q,c,r,s;
+ double t=0.0,w,p,q,c,r,s;
int32_t hx,ix;
GET_HIGH_WORD(hx,x);
ix = hx&0x7fffffff;