diff options
author | Damien George <damien.p.george@gmail.com> | 2014-03-21 20:52:54 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-03-21 20:52:54 +0000 |
commit | c070ff24a950cb764c8d51fa69f5a002e49fb3e4 (patch) | |
tree | c73536701311068c2ac94d639decc2fd3b52da46 /stm/math.c | |
parent | 7b4b78bc33fdb9b0007060877fd7c1ca2392bceb (diff) | |
download | micropython-c070ff24a950cb764c8d51fa69f5a002e49fb3e4.tar.gz micropython-c070ff24a950cb764c8d51fa69f5a002e49fb3e4.zip |
Disable some math functions until they work correctly.
Diffstat (limited to 'stm/math.c')
-rw-r--r-- | stm/math.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/stm/math.c b/stm/math.c index 8e2c6fc753..0809a3f2c5 100644 --- a/stm/math.c +++ b/stm/math.c @@ -44,6 +44,10 @@ float acosf(float x) { return 0.0; } float asinf(float x) { return 0.0; } float atanf(float x) { return 0.0; } float atan2f(float x, float y) { return 0.0; } +float ceilf(float x) { return 0.0; } +float floorf(float x) { return 0.0; } +float truncf(float x) { return 0.0; } +float fmodf(float x, float y) { return 0.0; } /*****************************************************************************/ // from musl-0.9.15 libm.h |