Skip to content
Snippets Groups Projects
Commit a62da515 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

Merge pull request #729 from stinos/fix-include-order

unix: Fix mpconfig.h not being included before misc.h
parents b1b84055 5478ed18
No related branches found
No related tags found
No related merge requests found
...@@ -26,8 +26,8 @@ ...@@ -26,8 +26,8 @@
#include <stdio.h> #include <stdio.h>
#include "misc.h"
#include "mpconfig.h" #include "mpconfig.h"
#include "misc.h"
#include "gc.h" #include "gc.h"
#if MICROPY_ENABLE_GC #if MICROPY_ENABLE_GC
......
...@@ -30,8 +30,8 @@ ...@@ -30,8 +30,8 @@
#include <unistd.h> #include <unistd.h>
#include <errno.h> #include <errno.h>
#include "misc.h"
#include "mpconfig.h" #include "mpconfig.h"
#include "misc.h"
#include "nlr.h" #include "nlr.h"
#include "qstr.h" #include "qstr.h"
#include "obj.h" #include "obj.h"
......
...@@ -30,8 +30,8 @@ ...@@ -30,8 +30,8 @@
#include <sys/time.h> #include <sys/time.h>
#include <math.h> #include <math.h>
#include "misc.h"
#include "mpconfig.h" #include "mpconfig.h"
#include "misc.h"
#include "qstr.h" #include "qstr.h"
#include "obj.h" #include "obj.h"
#include "runtime.h" #include "runtime.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment