summaryrefslogtreecommitdiffstatshomepage
path: root/py/misc.h
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-12-07 20:08:07 +0200
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-12-07 20:08:07 +0200
commit9f001b09a80fda2e5929f5defcc75367336053bf (patch)
treebb97c9d3dac14fac2886d612493d6944881f4d4d /py/misc.h
parent55995869e5329e4274146d240965783b203f2007 (diff)
downloadmicropython-9f001b09a80fda2e5929f5defcc75367336053bf.tar.gz
micropython-9f001b09a80fda2e5929f5defcc75367336053bf.zip
py/misc.h: Include stdint.h, as large share of code now depends on it.
Diffstat (limited to 'py/misc.h')
-rw-r--r--py/misc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/misc.h b/py/misc.h
index 0ccb526198..1411d03043 100644
--- a/py/misc.h
+++ b/py/misc.h
@@ -31,6 +31,7 @@
/** types *******************************************************/
#include <stdbool.h>
+#include <stdint.h>
#include <stddef.h>
typedef unsigned char byte;