math: remove comment about aliasing lgamma as gamma
[musl.git] / src / math / lgamma.c
blobe25ec8e600e149fa205802a4da49704a8bb4a3e6
1 #include <math.h>
3 extern int __signgam;
4 double __lgamma_r(double, int *);
6 double lgamma(double x)
8 return __lgamma_r(x, &__signgam);