mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2025-08-29 18:53:55 +02:00
7 lines
108 B
C
7 lines
108 B
C
#include <math.h>
|
|
#include "libm.h"
|
|
|
|
double __cdecl lgamma(double x)
|
|
{
|
|
return __lgamma_r(x, &__signgam);
|
|
}
|