micropython: add micropython component
This commit is contained in:
8
components/language/micropython/lib/libm_dbl/lgamma.c
Normal file
8
components/language/micropython/lib/libm_dbl/lgamma.c
Normal file
@@ -0,0 +1,8 @@
|
||||
#include <math.h>
|
||||
|
||||
double __lgamma_r(double, int*);
|
||||
|
||||
double lgamma(double x) {
|
||||
int sign;
|
||||
return __lgamma_r(x, &sign);
|
||||
}
|
Reference in New Issue
Block a user