1 /* @(#)w_j1.c 5.1 93/09/24 */
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6 * Developed at SunPro, a Sun Microsystems, Inc. business.
7 * Permission to use, copy, modify, and distribute this
8 * software is freely granted, provided that this notice
10 * ====================================================
13 #if defined(LIBM_SCCS) && !defined(lint)
14 static char rcsid
[] = "$NetBSD: w_j1.c,v 1.6 1995/05/10 20:49:15 jtc Exp $";
22 #include "math_private.h"
25 double __j1(double x
) /* wrapper j1 */
27 double __j1(x
) /* wrapper j1 */
32 return __ieee754_j1(x
);
36 if(_LIB_VERSION
== _IEEE_
|| __isnan(x
) ) return z
;
38 return __kernel_standard(x
,x
,36); /* j1(|x|>X_TLOSS) */
45 strong_alias (__j1
, __j1l
)
46 weak_alias (__j1
, j1l
)
51 double __y1(double x
) /* wrapper y1 */
53 double __y1(x
) /* wrapper y1 */
58 return __ieee754_y1(x
);
62 if(_LIB_VERSION
== _IEEE_
|| __isnan(x
) ) return z
;
66 return __kernel_standard(x
,x
,10);
69 return __kernel_standard(x
,x
,11);
72 return __kernel_standard(x
,x
,37); /* y1(x>X_TLOSS) */
79 strong_alias (__y1
, __y1l
)
80 weak_alias (__y1
, y1l
)