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