summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/s_tanh.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/s_tanh.c')
-rw-r--r--lib/msun/src/s_tanh.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/msun/src/s_tanh.c b/lib/msun/src/s_tanh.c
index c987a1a..dc1baaa 100644
--- a/lib/msun/src/s_tanh.c
+++ b/lib/msun/src/s_tanh.c
@@ -5,13 +5,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: s_tanh.c,v 1.5 1994/08/18 23:10:22 jtc Exp $";
+static char rcsid[] = "$Id: s_tanh.c,v 1.1.1.1 1994/08/19 09:39:53 jkh Exp $";
#endif
/* Tanh(x)
@@ -62,7 +62,7 @@ static double one=1.0, two=2.0, tiny = 1.0e-300;
ix = jx&0x7fffffff;
/* x is INF or NaN */
- if(ix>=0x7ff00000) {
+ if(ix>=0x7ff00000) {
if (jx>=0) return one/x+one; /* tanh(+-inf)=+-1 */
else return one/x-one; /* tanh(NaN) = NaN */
}
OpenPOWER on IntegriCloud