mirror of
https://github.com/fluencelabs/musl
synced 2025-06-01 17:11:53 +00:00
10 lines
139 B
C
10 lines
139 B
C
#include <math.h>
|
|
|
|
extern int __signgam;
|
|
double __lgamma_r(double, int *);
|
|
|
|
double lgamma(double x)
|
|
{
|
|
return __lgamma_r(x, &__signgam);
|
|
}
|