diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-28 23:12:39 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-28 23:12:39 +0300 |
commit | a62da515af72c67cbe74efbd6a74cd0a1e7d935e (patch) | |
tree | b0a31d095b9eb056351506ae52a52792c3dbc527 /unix | |
parent | b1b840554d27659f760304713c98f5c7f2d7f74b (diff) | |
parent | 5478ed18ea4dbce3e73e2694a926118e0df1d7a7 (diff) | |
download | micropython-a62da515af72c67cbe74efbd6a74cd0a1e7d935e.tar.gz micropython-a62da515af72c67cbe74efbd6a74cd0a1e7d935e.zip |
Merge pull request #729 from stinos/fix-include-order
unix: Fix mpconfig.h not being included before misc.h
Diffstat (limited to 'unix')
-rw-r--r-- | unix/gccollect.c | 2 | ||||
-rw-r--r-- | unix/modos.c | 2 | ||||
-rw-r--r-- | unix/modtime.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/unix/gccollect.c b/unix/gccollect.c index f24cc52495..be05ff3ebc 100644 --- a/unix/gccollect.c +++ b/unix/gccollect.c @@ -26,8 +26,8 @@ #include <stdio.h> -#include "misc.h" #include "mpconfig.h" +#include "misc.h" #include "gc.h" #if MICROPY_ENABLE_GC diff --git a/unix/modos.c b/unix/modos.c index 2e02ef0aa7..9b034cdbc2 100644 --- a/unix/modos.c +++ b/unix/modos.c @@ -30,8 +30,8 @@ #include <unistd.h> #include <errno.h> -#include "misc.h" #include "mpconfig.h" +#include "misc.h" #include "nlr.h" #include "qstr.h" #include "obj.h" diff --git a/unix/modtime.c b/unix/modtime.c index 006fd0ebd7..286d8ea97e 100644 --- a/unix/modtime.c +++ b/unix/modtime.c @@ -30,8 +30,8 @@ #include <sys/time.h> #include <math.h> -#include "misc.h" #include "mpconfig.h" +#include "misc.h" #include "qstr.h" #include "obj.h" #include "runtime.h" |