diff options
author | Damien George <damien.p.george@gmail.com> | 2015-01-22 13:48:29 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-01-22 13:48:29 +0000 |
commit | 6d1f5070ce97d76452ba48c2baa27d8f818a1545 (patch) | |
tree | 798d53affab24a696799ac9e40404332b54eaab5 /lib/libm/math.c | |
parent | bd9c1ad601aceaa1a74c32790df883b12c43348d (diff) | |
download | micropython-6d1f5070ce97d76452ba48c2baa27d8f818a1545.tar.gz micropython-6d1f5070ce97d76452ba48c2baa27d8f818a1545.zip |
lib/libm: Add frexp and modf functions; use in stmhal; add tests.
Addresses issue #1081.
Diffstat (limited to 'lib/libm/math.c')
-rw-r--r-- | lib/libm/math.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/libm/math.c b/lib/libm/math.c index 0998de227a..d5b6164a49 100644 --- a/lib/libm/math.c +++ b/lib/libm/math.c @@ -122,8 +122,6 @@ 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 modff(float x, float *y) { return 0.0; } -float frexpf(float x, int *exp) { return 0.0; } float ldexpf(float x, int exp) { return 0.0; } /*****************************************************************************/ |