NetBSD/lib/libm/src/w_log.c

45 lines
1020 B
C
Raw Normal View History

1994-02-11 20:52:17 +03:00
/* @(#)w_log.c 5.1 93/09/24 */
/*
* ====================================================
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
*
* Developed at SunPro, a Sun Microsystems, Inc. business.
* Permission to use, copy, modify, and distribute this
1999-07-02 19:37:33 +04:00
* software is freely granted, provided that this notice
1994-02-11 20:52:17 +03:00
* is preserved.
* ====================================================
*/
1997-10-09 15:34:16 +04:00
#include <sys/cdefs.h>
#if defined(LIBM_SCCS) && !defined(lint)
1999-07-02 19:37:33 +04:00
__RCSID("$NetBSD: w_log.c,v 1.8 1999/07/02 15:37:44 simonb Exp $");
1994-02-18 05:27:42 +03:00
#endif
1994-02-11 20:52:17 +03:00
/*
* wrapper log(x)
*/
#include "math.h"
#include "math_private.h"
1994-02-11 20:52:17 +03:00
#ifdef __STDC__
double log(double x) /* wrapper log */
#else
double log(x) /* wrapper log */
double x;
#endif
{
#ifdef _IEEE_LIBM
return __ieee754_log(x);
#else
double z;
z = __ieee754_log(x);
if(_LIB_VERSION == _IEEE_ || isnan(x) || x > 0.0) return z;
if(x==0.0)
return __kernel_standard(x,x,16); /* log(0) */
1999-07-02 19:37:33 +04:00
else
1994-02-11 20:52:17 +03:00
return __kernel_standard(x,x,17); /* log(x<0) */
#endif
}