summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/s_atanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/s_atanf.c')
-rw-r--r--lib/msun/src/s_atanf.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/msun/src/s_atanf.c b/lib/msun/src/s_atanf.c
index f9d5160..52beebf 100644
--- a/lib/msun/src/s_atanf.c
+++ b/lib/msun/src/s_atanf.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: s_atanf.c,v 1.2 1994/08/18 23:06:24 jtc Exp $";
+static char rcsid[] = "$Id: s_atanf.c,v 1.1.1.1 1994/08/19 09:39:57 jkh Exp $";
#endif
#include "math.h"
@@ -61,9 +61,9 @@ static float aT[] = {
};
#ifdef __STDC__
- static const float
+ static const float
#else
- static float
+ static float
#endif
one = 1.0,
huge = 1.0e30;
@@ -94,9 +94,9 @@ huge = 1.0e30;
x = fabsf(x);
if (ix < 0x3f980000) { /* |x| < 1.1875 */
if (ix < 0x3f300000) { /* 7/16 <=|x|<11/16 */
- id = 0; x = ((float)2.0*x-one)/((float)2.0+x);
+ id = 0; x = ((float)2.0*x-one)/((float)2.0+x);
} else { /* 11/16<=|x|< 19/16 */
- id = 1; x = (x-one)/(x+one);
+ id = 1; x = (x-one)/(x+one);
}
} else {
if (ix < 0x401c0000) { /* |x| < 2.4375 */
OpenPOWER on IntegriCloud