1 /* wf_sqrt.c -- float version of w_sqrt.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
6 * ====================================================
7 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
9 * Developed at SunPro, a Sun Microsystems, Inc. business.
10 * Permission to use, copy, modify, and distribute this
11 * software is freely granted, provided that this notice
13 * ====================================================
24 float sqrtf(float x
) /* wrapper sqrtf */
26 float sqrtf(x
) /* wrapper sqrtf */
31 return __ieee754_sqrtf(x
);
35 z
= __ieee754_sqrtf(x
);
36 if(_LIB_VERSION
== _IEEE_
|| isnanf(x
)) return z
;
42 exc
.arg1
= exc
.arg2
= (double)x
;
43 if (_LIB_VERSION
== _SVID_
)
47 if (_LIB_VERSION
== _POSIX_
)
49 else if (!matherr(&exc
)) {
54 return (float)exc
.retval
;
60 #ifdef _DOUBLE_IS_32BITS
69 return (double) sqrtf((float) x
);
72 #endif /* defined(_DOUBLE_IS_32BITS) */