xref: /relibc/openlibm/src/e_lgammal.c (revision 28fb939b0de8e3c8a7fd6064a7277410b84b292f)
1 #include "cdefs-compat.h"
2 
3 #include <openlibm_math.h>
4 
5 #include "math_private.h"
6 
7 OLM_DLLEXPORT long double
8 lgammal(long double x)
9 {
10 #ifdef OPENLIBM_ONLY_THREAD_SAFE
11 	int signgam;
12 #endif
13 
14 	return (lgammal_r(x, &signgam));
15 }
16