diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-21 22:43:22 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-21 22:43:22 +0300 |
commit | 59c675a64c1d9757d50ad4627da67a6f996a99fb (patch) | |
tree | 8a5163fe244f5d5c61aa92c179aeb54ddea37610 /py/malloc.c | |
parent | 4c4b9d15ab94dfe31ec34559ab70bafc0ef11f02 (diff) | |
download | micropython-59c675a64c1d9757d50ad4627da67a6f996a99fb.tar.gz micropython-59c675a64c1d9757d50ad4627da67a6f996a99fb.zip |
py: Include mpconfig.h before all other includes.
It defines types used by all other headers.
Fixes #691.
Diffstat (limited to 'py/malloc.c')
-rw-r--r-- | py/malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/malloc.c b/py/malloc.c index b180ddf6b5..8e90849e93 100644 --- a/py/malloc.c +++ b/py/malloc.c @@ -28,8 +28,8 @@ #include <stdlib.h> #include <string.h> -#include "misc.h" #include "mpconfig.h" +#include "misc.h" #if 0 // print debugging info #define DEBUG_printf DEBUG_printf |