xref: /aosp_15_r20/bionic/libm/upstream-freebsd/lib/msun/src/e_lgammal.c (revision 8d67ca893c1523eb926b9080dbe4e2ffd2a27ba1)
1 /*
2  * ====================================================
3  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
4  *
5  * Developed at SunSoft, a Sun Microsystems, Inc. business.
6  * Permission to use, copy, modify, and distribute this
7  * software is freely granted, provided that this notice
8  * is preserved.
9  * ====================================================
10  */
11 
12 #include "math.h"
13 #include "math_private.h"
14 
15 extern int signgam;
16 
17 long double
lgammal(long double x)18 lgammal(long double x)
19 {
20 	return lgammal_r(x,&signgam);
21 }
22