py: Include mpconfig.h before all other includes.

It defines types used by all other headers.

Fixes #691.
diff --git a/py/map.c b/py/map.c
index 4020401..dcc13c5 100644
--- a/py/map.c
+++ b/py/map.c
@@ -27,8 +27,8 @@
 #include <stdlib.h>
 #include <assert.h>
 
-#include "misc.h"
 #include "mpconfig.h"
+#include "misc.h"
 #include "qstr.h"
 #include "obj.h"
 #include "runtime0.h"