diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-11-23 08:49:34 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-11-23 08:49:34 +0000 |
commit | 648d5f450ee2f904916082d9eac2f230ecece314 (patch) | |
tree | 23f356e9a49d94933b1d84ed043ad5c29c222bf5 /libm/e_sinh.c | |
parent | 7ce331c01ce6eb7b3f5c715a38a24359da9c6ee2 (diff) |
Default to building C89 math stuff only. Cleanup some warnings.
-Erik
Diffstat (limited to 'libm/e_sinh.c')
-rw-r--r-- | libm/e_sinh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libm/e_sinh.c b/libm/e_sinh.c index 2e5332c11..e1e614c9e 100644 --- a/libm/e_sinh.c +++ b/libm/e_sinh.c @@ -75,7 +75,7 @@ static double one = 1.0, shuge = 1.0e307; /* |x| in [log(maxdouble), overflowthresold] */ GET_LOW_WORD(lx,x); - if (ix<0x408633CE || (ix==0x408633ce)&&(lx<=(u_int32_t)0x8fb9f87d)) { + if (ix<0x408633CE || ((ix==0x408633ce)&&(lx<=(u_int32_t)0x8fb9f87d))) { w = __ieee754_exp(0.5*fabs(x)); t = h*w; return t*w; |