#include <sys/cdefs.h>
#if defined(LIBM_SCCS) && !defined(lint)
__RCSID("$NetBSD: w_j0f.c,v 1.6 2002/05/26 22:02:01 wiz Exp $");
#endif
#include "math.h"
#include "math_private.h"
float
j0f(float x)
{
#ifdef _IEEE_LIBM
return __ieee754_j0f(x);
#else
float z = __ieee754_j0f(x);
if(_LIB_VERSION == _IEEE_ || isnanf(x)) return z;
if(fabsf(x)>(float)X_TLOSS) {
return (float)__kernel_standard((double)x,(double)x,134);
} else
return z;
#endif
}
float
y0f(float x)
{
#ifdef _IEEE_LIBM
return __ieee754_y0f(x);
#else
float z;
z = __ieee754_y0f(x);
if(_LIB_VERSION == _IEEE_ || isnanf(x) ) return z;
if(x <= (float)0.0){
if(x==(float)0.0)
return (float)__kernel_standard((double)x,(double)x,108);
else
return (float)__kernel_standard((double)x,(double)x,109);
}
if(x>(float)X_TLOSS) {
return (float)__kernel_standard((double)x,(double)x,135);
} else
return z;
#endif
}