Update.
[glibc.git] / sysdeps / libm-ieee754 / w_gammal.c
blob1b4ae2cc7b810216857eb1c69498c7f363966d87
1 /* w_gammal.c -- long double version of w_gamma.c.
2 * Conversion to long double by Ulrich Drepper,
3 * Cygnus Support, drepper@cygnus.com.
4 */
6 /*
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
13 * is preserved.
14 * ====================================================
17 #if defined(LIBM_SCCS) && !defined(lint)
18 static char rcsid[] = "$NetBSD: $";
19 #endif
21 /* long double gammal(double x)
22 * Return the Gamma function of x.
25 #include "math.h"
26 #include "math_private.h"
28 #ifdef __STDC__
29 long double __gammal(long double x)
30 #else
31 long double __gammal(x)
32 long double x;
33 #endif
35 long double y;
36 #ifndef _IEEE_LIBM
37 if (_LIB_VERSION == _SVID_)
38 y = __ieee754_lgammal_r(x,&signgam);
39 else
41 #endif
42 int local_signgam;
43 y = __ieee754_gammal_r(x,&local_signgam);
44 if (local_signgam < 0) y = -y;
45 #ifdef _IEEE_LIBM
46 return y;
47 #else
48 if(_LIB_VERSION == _IEEE_) return y;
50 if(!__finitel(y)&&__finitel(x)) {
51 if(__floorl(x)==x&&x<=0.0)
52 return __kernel_standard(x,x,241); /* gamma pole */
53 else
54 return __kernel_standard(x,x,240); /* gamma overflow */
55 } else
56 return y;
57 #endif
59 weak_alias (__gammal, gammal)