1 /* w_sqrtl.c -- long double version of w_sqrt.c.
2 * Conversion to long double by Ulrich Drepper,
3 * Cygnus Support, drepper@cygnus.com.
7 * ====================================================
8 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
10 * Developed at SunPro, a Sun Microsystems, Inc. business.
11 * Permission to use, copy, modify, and distribute this
12 * software is freely granted, provided that this notice
14 * ====================================================
17 #if defined(LIBM_SCCS) && !defined(lint)
18 static char rcsid
[] = "$NetBSD: $";
26 #include "math_private.h"
29 long double __sqrtl(long double x
) /* wrapper sqrtl */
31 long double __sqrtl(x
) /* wrapper sqrtl */
36 return __ieee754_sqrtl(x
);
39 z
= __ieee754_sqrtl(x
);
40 if(_LIB_VERSION
== _IEEE_
|| __isnanl(x
)) return z
;
42 return __kernel_standard(x
,x
,226); /* sqrt(negative) */
47 weak_alias (__sqrtl
, sqrtl
)