mirror of
https://github.com/fluencelabs/musl
synced 2025-06-06 11:31:35 +00:00
10 lines
118 B
C
10 lines
118 B
C
|
#include "libm.h"
|
||
|
|
||
|
float lgammaf(float x)
|
||
|
{
|
||
|
return lgamma_r(x, &signgam);
|
||
|
}
|
||
|
|
||
|
// FIXME
|
||
|
//weak_alias(lgammaf, gammaf);
|