summaryrefslogtreecommitdiffstatshomepage
path: root/unix/gccollect.c
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-06-28 23:12:39 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-06-28 23:12:39 +0300
commita62da515af72c67cbe74efbd6a74cd0a1e7d935e (patch)
treeb0a31d095b9eb056351506ae52a52792c3dbc527 /unix/gccollect.c
parentb1b840554d27659f760304713c98f5c7f2d7f74b (diff)
parent5478ed18ea4dbce3e73e2694a926118e0df1d7a7 (diff)
downloadmicropython-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/gccollect.c')
-rw-r--r--unix/gccollect.c2
1 files changed, 1 insertions, 1 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