1 /* w_j0l.c -- long double version of w_j0.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: $";
22 * wrapper j0l(long double x), y0l(long double x)
26 #include "math_private.h"
29 long double __j0l(long double x
) /* wrapper j0l */
31 long double __j0l(x
) /* wrapper j0 */
36 return __ieee754_j0l(x
);
38 long double z
= __ieee754_j0l(x
);
39 if(_LIB_VERSION
== _IEEE_
|| __isnanl(x
)) return z
;
40 if(fabsl(x
)>X_TLOSS
) {
41 return __kernel_standard(x
,x
,234); /* j0(|x|>X_TLOSS) */
46 weak_alias (__j0l
, j0l
)
49 long double __y0l(long double x
) /* wrapper y0l */
51 long double __y0l(x
) /* wrapper y0 */
56 return __ieee754_y0l(x
);
60 if(_LIB_VERSION
== _IEEE_
|| __isnanl(x
) ) return z
;
64 return __kernel_standard(x
,x
,208);
67 return __kernel_standard(x
,x
,209);
70 return __kernel_standard(x
,x
,235); /* y0(x>X_TLOSS) */
76 weak_alias (__y0l
, y0l
)