mirror of
https://github.com/micropython/micropython.git
synced 2025-09-07 18:30:27 +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);
|
|
}
|