xref: /netbsd-src/lib/libm/src/e_lgammal.c (revision cfe182f36bde4c4d81e1607954ce22a67cf35d7a)
1 /* @(#)e_lgamma.c 1.3 95/01/18 */
2 /*
3  * ====================================================
4  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5  *
6  * Developed at SunSoft, a Sun Microsystems, Inc. business.
7  * Permission to use, copy, modify, and distribute this
8  * software is freely granted, provided that this notice
9  * is preserved.
10  * ====================================================
11  */
12 
13 #include <sys/cdefs.h>
14 
15 #include "namespace.h"
16 
17 __weak_alias(lgammal, _lgammal)
18 
19 #include "math.h"
20 #include "math_private.h"
21 
22 extern int signgam;
23 
24 long double
lgammal(long double x)25 lgammal(long double x)
26 {
27 	return lgammal_r(x,&signgam);
28 }
29