lib: Add libm_dbl, a double-precision math library, from musl-1.1.16.

This commit is contained in:
Damien George
2017-06-23 15:52:00 +10:00
parent 409fc8f9c1
commit 045116551e
43 changed files with 3743 additions and 0 deletions

7
lib/libm_dbl/log10.c Normal file
View 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;
}