musl/src/math/lgammaf.c
nsz 1b229a2098 math: remove comment about aliasing lgamma as gamma
It is probably not worth supporting gamma.
(it was already deprecated in 4.3BSD)
2012-03-27 22:12:20 +02:00

10 lines
138 B
C

#include <math.h>
extern int __signgam;
float __lgammaf_r(float, int *);
float lgammaf(float x)
{
return __lgammaf_r(x, &__signgam);
}