1 /* @(#)w_lgamma.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_lgamma.c,v 1.6 1995/05/10 20:49:24 jtc Exp $";
17 /* double lgamma(double x)
18 * Return the logarithm of the Gamma function of x.
20 * Method: call __ieee754_lgamma_r
24 #include "math_private.h"
27 double __lgamma(double x
)
34 return __ieee754_lgamma_r(x
,&signgam
);
37 int local_signgam
= 0;
38 y
= __ieee754_lgamma_r(x
,&local_signgam
);
39 if (_LIB_VERSION
!= _ISOC_
)
40 /* ISO C99 does not define the global variable. */
41 signgam
= local_signgam
;
42 if(_LIB_VERSION
== _IEEE_
) return y
;
43 if(!__finite(y
)&&__finite(x
)) {
44 if(__floor(x
)==x
&&x
<=0.0)
45 return __kernel_standard(x
,x
,15); /* lgamma pole */
47 return __kernel_standard(x
,x
,14); /* lgamma overflow */
52 weak_alias (__lgamma
, lgamma
)
53 strong_alias (__lgamma
, __gamma
)
54 weak_alias (__gamma
, gamma
)
56 strong_alias (__lgamma
, __lgammal
)
57 weak_alias (__lgamma
, lgammal
)
58 strong_alias (__gamma
, __gammal
)
59 weak_alias (__gamma
, gammal
)