summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/e_coshf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/e_coshf.c')
-rw-r--r--lib/msun/src/e_coshf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/msun/src/e_coshf.c b/lib/msun/src/e_coshf.c
index 6c30ae5..25bb9e3 100644
--- a/lib/msun/src/e_coshf.c
+++ b/lib/msun/src/e_coshf.c
@@ -8,13 +8,13 @@
*
* Developed at SunPro, a Sun Microsystems, Inc. business.
* Permission to use, copy, modify, and distribute this
- * software is freely granted, provided that this notice
+ * software is freely granted, provided that this notice
* is preserved.
* ====================================================
*/
#ifndef lint
-static char rcsid[] = "$Id: e_coshf.c,v 1.2 1994/08/18 23:05:17 jtc Exp $";
+static char rcsid[] = "$Id: e_coshf.c,v 1.1.1.1 1994/08/19 09:39:54 jkh Exp $";
#endif
#include "math.h"
@@ -32,7 +32,7 @@ static float one = 1.0, half=0.5, huge = 1.0e30;
float __ieee754_coshf(x)
float x;
#endif
-{
+{
float t,w;
int32_t ix;
@@ -40,7 +40,7 @@ static float one = 1.0, half=0.5, huge = 1.0e30;
ix &= 0x7fffffff;
/* x is INF or NaN */
- if(ix>=0x7f800000) return x*x;
+ if(ix>=0x7f800000) return x*x;
/* |x| in [0,0.5*ln2], return 1+expm1(|x|)^2/(2*exp(|x|)) */
if(ix<0x3eb17218) {
OpenPOWER on IntegriCloud