summaryrefslogtreecommitdiffstatshomepage
path: root/stmhal/math.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-03-23 14:00:02 +0000
committerDamien George <damien.p.george@gmail.com>2014-03-23 14:00:02 +0000
commit90834b956d567f5205588caa46cee8d1b1397046 (patch)
treea4bc500acfd033d30d09057207cb9d4de6a1469e /stmhal/math.c
parentd67441de1857d255d937008135505055407bd9dd (diff)
downloadmicropython-90834b956d567f5205588caa46cee8d1b1397046.tar.gz
micropython-90834b956d567f5205588caa46cee8d1b1397046.zip
stm/stmhal: Change gammaf to tgammaf.
Diffstat (limited to 'stmhal/math.c')
-rw-r--r--stmhal/math.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/math.c b/stmhal/math.c
index 9197d850c8..8afdc82a64 100644
--- a/stmhal/math.c
+++ b/stmhal/math.c
@@ -79,7 +79,7 @@ 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; }
-float gammaf(float x) { return 0.0; }
+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; }