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

Specifically, nlr.h does.
diff --git a/py/objint.c b/py/objint.c
index 110876e..bec4e92 100644
--- a/py/objint.c
+++ b/py/objint.c
@@ -3,9 +3,9 @@
 #include <assert.h>
 #include <string.h>
 
+#include "mpconfig.h"
 #include "nlr.h"
 #include "misc.h"
-#include "mpconfig.h"
 #include "qstr.h"
 #include "obj.h"
 #include "parsenum.h"