mirror of
https://github.com/micropython/micropython.git
synced 2025-07-21 21:11:12 +02:00
9 lines
128 B
C
9 lines
128 B
C
#include <math.h>
|
|
|
|
double __lgamma_r(double, int*);
|
|
|
|
double lgamma(double x) {
|
|
int sign;
|
|
return __lgamma_r(x, &sign);
|
|
}
|