Deleted Added
full compact
1c1,2
< /* @(#)e_asin.c 5.1 93/09/24 */
---
>
> /* @(#)e_asin.c 1.3 95/01/18 */
6c7
< * Developed at SunPro, a Sun Microsystems, Inc. business.
---
> * Developed at SunSoft, a Sun Microsystems, Inc. business.
8c9
< * software is freely granted, provided that this notice
---
> * software is freely granted, provided that this notice
14c15
< static char rcsid[] = "$FreeBSD: head/lib/msun/src/e_asin.c 117912 2003-07-23 04:53:47Z peter $";
---
> static char rcsid[] = "$FreeBSD: head/lib/msun/src/e_asin.c 141296 2005-02-04 18:26:06Z das $";
18c19
< * Method :
---
> * Method :
23c24
< * R(x^2) is a rational approximation of (asin(x)-x)/x^3
---
> * R(x^2) is a rational approximation of (asin(x)-x)/x^3
81,82c82,83
< return x*pio2_hi+x*pio2_lo;
< return (x-x)/(x-x); /* asin(|x|>1) is NaN */
---
> return x*pio2_hi+x*pio2_lo;
> return (x-x)/(x-x); /* asin(|x|>1) is NaN */
86c87
< } else
---
> } else
98c99
< s = __ieee754_sqrt(t);
---
> s = sqrt(t);
110,111c111,112
< }
< if(hx>0) return t; else return -t;
---
> }
> if(hx>0) return t; else return -t;