mirror of
https://github.com/fluencelabs/musl
synced 2025-06-01 17:11:53 +00:00
10 lines
138 B
C
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);
|
|
}
|