Skip to content
Snippets Groups Projects
Commit 5478ed18 authored by stijn's avatar stijn
Browse files

unix: Fix mpconfig.h not being included before misc.h

This fixes count_lead_ones in misc.h not compiling due to unknown types
parent b1b84055
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