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