aboutsummaryrefslogtreecommitdiff
path: root/system/lib/libc/musl/src/math/lgamma.c
blob: 360066826508d7969a6b998de7ea7c69e04ae75b (plain)
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);
}