diff options
author | Damien George <damien.p.george@gmail.com> | 2015-03-14 23:11:25 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-03-14 23:11:25 +0000 |
commit | 1ef26b35c1682637de143ccb0449acb42428ed5c (patch) | |
tree | 8fe0420245dd71452ccdb6f82c0256abcf9949b0 /py | |
parent | 836e46976f27a6a0fbbbf0a28e50c27d4b3fc725 (diff) | |
download | micropython-1ef26b35c1682637de143ccb0449acb42428ed5c.tar.gz micropython-1ef26b35c1682637de143ccb0449acb42428ed5c.zip |
py, extmod: Remove include of unnecessary system headers.
Diffstat (limited to 'py')
-rw-r--r-- | py/compile.c | 1 | ||||
-rw-r--r-- | py/objfloat.c | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/py/compile.c b/py/compile.c index d95d8f73bc..6c54ddeb83 100644 --- a/py/compile.c +++ b/py/compile.c @@ -29,7 +29,6 @@ #include <stdio.h> #include <string.h> #include <assert.h> -#include <math.h> #include "py/scope.h" #include "py/emit.h" diff --git a/py/objfloat.c b/py/objfloat.c index 2e8b7f74e9..b94caf3c06 100644 --- a/py/objfloat.c +++ b/py/objfloat.c @@ -28,7 +28,6 @@ #include <stdio.h> #include <string.h> #include <assert.h> -#include <math.h> #include "py/nlr.h" #include "py/parsenum.h" @@ -37,6 +36,8 @@ #if MICROPY_PY_BUILTINS_FLOAT +#include <math.h> + #if MICROPY_FLOAT_IMPL == MICROPY_FLOAT_IMPL_FLOAT #include "py/formatfloat.h" #endif |