musl - an implementation of the standard library for Linux-based systems
blob: 2fc9b478ec08acce0315da870dd190d3cae2cb7b (
plain) (
blame)
1
2
3
4
5
6
7
|
#include <math.h>
#include "libm.h"
double lgamma(double x)
{
return __lgamma_r(x, &__signgam);
}
|