summaryrefslogtreecommitdiff
path: root/src/math/lgamma.c
blob: e25ec8e600e149fa205802a4da49704a8bb4a3e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <math.h>

extern int __signgam;
double __lgamma_r(double, int *);

double lgamma(double x)
{
	return __lgamma_r(x, &__signgam);
}