kopia lustrzana https://github.com/micropython/micropython
9 wiersze
128 B
C
9 wiersze
128 B
C
|
#include <math.h>
|
||
|
|
||
|
double __lgamma_r(double, int*);
|
||
|
|
||
|
double lgamma(double x) {
|
||
|
int sign;
|
||
|
return __lgamma_r(x, &sign);
|
||
|
}
|