From c070ff24a950cb764c8d51fa69f5a002e49fb3e4 Mon Sep 17 00:00:00 2001 From: Damien George Date: Fri, 21 Mar 2014 20:52:54 +0000 Subject: Disable some math functions until they work correctly. --- stm/math.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'stm') diff --git a/stm/math.c b/stm/math.c index 8e2c6fc75..0809a3f2c 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 -- cgit v1.2.3