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

This fixes count_lead_ones in misc.h not compiling due to unknown types
This commit is contained in:
stijn 2014-06-28 20:49:39 +02:00
parent b1b840554d
commit 5478ed18ea
3 changed files with 3 additions and 3 deletions

View File

@ -26,8 +26,8 @@
#include <stdio.h>
#include "misc.h"
#include "mpconfig.h"
#include "misc.h"
#include "gc.h"
#if MICROPY_ENABLE_GC

View File

@ -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"

View File

@ -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"