micropython: add micropython component
This commit is contained in:
7
components/language/micropython/lib/libm_dbl/log10.c
Normal file
7
components/language/micropython/lib/libm_dbl/log10.c
Normal file
@@ -0,0 +1,7 @@
|
||||
#include <math.h>
|
||||
|
||||
static const double _M_LN10 = 2.302585092994046;
|
||||
|
||||
double log10(double x) {
|
||||
return log(x) / (double)_M_LN10;
|
||||
}
|
Reference in New Issue
Block a user