other side of the signgam namespace fix: use the internal name
[musl] / src / math / lgamma.c
1 #include "libm.h"
2
3 extern int __signgam;
4 double __lgamma_r(double, int *);
5
6 double lgamma(double x)
7 {
8         return __lgamma_r(x, &__signgam);
9 }
10
11 // FIXME
12 //weak_alias(lgamma, gamma);