diff options
author | Damien George <damien.p.george@gmail.com> | 2015-02-22 14:47:11 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-02-22 14:47:11 +0000 |
commit | 9ab94c468cb0d2a22eadbce2f493e016c462109e (patch) | |
tree | f81d9d3ac7bd80cecf0d9e3a5c23dfbd71be7319 /lib/libm/math.c | |
parent | 3527085587c8f361cc286d926a4a7b3f23fe9102 (diff) | |
download | micropython-9ab94c468cb0d2a22eadbce2f493e016c462109e.tar.gz micropython-9ab94c468cb0d2a22eadbce2f493e016c462109e.zip |
lib/libm: Add implementations of erf, erfc, lgamma, tgamma.
Diffstat (limited to 'lib/libm/math.c')
-rw-r--r-- | lib/libm/math.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/libm/math.c b/lib/libm/math.c index d5b6164a49..5d4779b62d 100644 --- a/lib/libm/math.c +++ b/lib/libm/math.c @@ -117,13 +117,6 @@ float log10f(float x) { return logf(x) / (float)_M_LN10; } float tanhf(float x) { return sinhf(x) / coshf(x); } -// TODO we need import these functions from some library (eg musl or newlib) -float tgammaf(float x) { return 0.0; } -float lgammaf(float x) { return 0.0; } -float erff(float x) { return 0.0; } -float erfcf(float x) { return 0.0; } -float ldexpf(float x, int exp) { return 0.0; } - /*****************************************************************************/ /*****************************************************************************/ // __fpclassifyf from musl-0.9.15 |