diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-02 18:23:23 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-02 18:23:23 +0300 |
commit | 26a99207354787cd010b833c6ea8ad348c793820 (patch) | |
tree | bf936c68ea8b5ef3385174d4c3297ec92c379ffd | |
parent | 9b71b16a942f0ce6b18d0b631d292276baa007c9 (diff) | |
download | micropython-26a99207354787cd010b833c6ea8ad348c793820.tar.gz micropython-26a99207354787cd010b833c6ea8ad348c793820.zip |
bare-arm, qemu-arm: Make "mpconfig.h" be first included, as other headers depend on it.
-rw-r--r-- | bare-arm/main.c | 2 | ||||
-rw-r--r-- | qemu-arm/main.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bare-arm/main.c b/bare-arm/main.c index 8ad9b15870..bdaded4362 100644 --- a/bare-arm/main.c +++ b/bare-arm/main.c @@ -2,9 +2,9 @@ #include <stdio.h> #include <string.h> +#include "mpconfig.h" #include "nlr.h" #include "misc.h" -#include "mpconfig.h" #include "qstr.h" #include "lexer.h" #include "parse.h" diff --git a/qemu-arm/main.c b/qemu-arm/main.c index 6ecc9a4b2e..91c096289e 100644 --- a/qemu-arm/main.c +++ b/qemu-arm/main.c @@ -2,9 +2,9 @@ #include <stdio.h> #include <string.h> +#include "mpconfig.h" #include "nlr.h" #include "misc.h" -#include "mpconfig.h" #include "qstr.h" #include "lexer.h" #include "parse.h" |