py, unix: Make "mpconfig.h" be first included, as other headers depend on it.

Specifically, nlr.h does.
diff --git a/py/objrange.c b/py/objrange.c
index 8c0eadd..acfeed7 100644
--- a/py/objrange.c
+++ b/py/objrange.c
@@ -1,8 +1,8 @@
 #include <stdlib.h>
 
+#include "mpconfig.h"
 #include "nlr.h"
 #include "misc.h"
-#include "mpconfig.h"
 #include "qstr.h"
 #include "obj.h"
 #include "runtime.h"