summaryrefslogtreecommitdiffstatshomepage
path: root/unix/modtime.c
diff options
context:
space:
mode:
authorstijn <stinos@zoho.com>2014-06-28 20:49:39 +0200
committerstijn <stinos@zoho.com>2014-06-28 20:49:39 +0200
commit5478ed18ea4dbce3e73e2694a926118e0df1d7a7 (patch)
treeb0a31d095b9eb056351506ae52a52792c3dbc527 /unix/modtime.c
parentb1b840554d27659f760304713c98f5c7f2d7f74b (diff)
downloadmicropython-5478ed18ea4dbce3e73e2694a926118e0df1d7a7.tar.gz
micropython-5478ed18ea4dbce3e73e2694a926118e0df1d7a7.zip
unix: Fix mpconfig.h not being included before misc.h
This fixes count_lead_ones in misc.h not compiling due to unknown types
Diffstat (limited to 'unix/modtime.c')
-rw-r--r--unix/modtime.c2
1 files changed, 1 insertions, 1 deletions
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"