diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-01 10:48:58 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-01 10:48:58 +0100 |
commit | 46330bd9b52bdd8865be62c1f6c534ef7709b842 (patch) | |
tree | dc531b159f6e5d3c3940e5fad752df9692e4ec60 /py/formatfloat.c | |
parent | e44d26ae0c1b5d248fa4db112cdeabe404944f3c (diff) | |
parent | baf6f14deb567ab626c1b05213af346108f41700 (diff) | |
download | micropython-46330bd9b52bdd8865be62c1f6c534ef7709b842.tar.gz micropython-46330bd9b52bdd8865be62c1f6c534ef7709b842.zip |
Merge pull request #407 from dhylands/str-format
Enhance str.format support
Diffstat (limited to 'py/formatfloat.c')
-rw-r--r-- | py/formatfloat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/py/formatfloat.c b/py/formatfloat.c index 83aee1ef74..b1c62fa6d5 100644 --- a/py/formatfloat.c +++ b/py/formatfloat.c @@ -14,6 +14,7 @@ ***********************************************************************/ #include <stdlib.h> +#include <stdint.h> #include "mpconfig.h" |