summaryrefslogtreecommitdiff
path: root/stmhal/math.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-03-21 20:52:54 +0000
committerDamien George <damien.p.george@gmail.com>2014-03-21 20:52:54 +0000
commitc070ff24a950cb764c8d51fa69f5a002e49fb3e4 (patch)
treec73536701311068c2ac94d639decc2fd3b52da46 /stmhal/math.c
parent7b4b78bc33fdb9b0007060877fd7c1ca2392bceb (diff)
Disable some math functions until they work correctly.
Diffstat (limited to 'stmhal/math.c')
-rw-r--r--stmhal/math.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/stmhal/math.c b/stmhal/math.c
index 8e2c6fc75..0809a3f2c 100644
--- a/stmhal/math.c
+++ b/stmhal/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