xref: /haiku/src/system/libroot/posix/musl/math/lgamma.c (revision 25f1ddecf7c81f9fd03fbd9463aa6566b8d01fc4)
1 #include <math.h>
2 #include "libm.h"
3 
4 double lgamma(double x)
5 {
6 	return __lgamma_r(x, &__signgam);
7 }
8