summaryrefslogtreecommitdiffstatshomepage
path: root/lib/libm/math.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-09-13 18:43:09 +0100
committerDamien George <damien.p.george@gmail.com>2014-09-13 18:43:09 +0100
commit8594ce228011e6264f59ade4ff8a7f2bfa90a649 (patch)
tree528fa7008c5e4c4b283c33abcf3eefd17d6a0b52 /lib/libm/math.c
parent5c6783496d8211eb4b19cec2cbb2b66e2a37f0eb (diff)
downloadmicropython-8594ce228011e6264f59ade4ff8a7f2bfa90a649.tar.gz
micropython-8594ce228011e6264f59ade4ff8a7f2bfa90a649.zip
py: Implement divmod, % and proper // for floating point.
Tested and working on unix and pyboard.
Diffstat (limited to 'lib/libm/math.c')
-rw-r--r--lib/libm/math.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/libm/math.c b/lib/libm/math.c
index 07a563e58c..623bedb3de 100644
--- a/lib/libm/math.c
+++ b/lib/libm/math.c
@@ -117,7 +117,6 @@ float acoshf(float x) { return 0.0; }
float asinhf(float x) { return 0.0; }
float atanhf(float x) { return 0.0; }
float tanf(float x) { return 0.0; }
-float fmodf(float x, float y) { return 0.0; }
float tgammaf(float x) { return 0.0; }
float lgammaf(float x) { return 0.0; }
float erff(float x) { return 0.0; }