summaryrefslogtreecommitdiffstatshomepage
path: root/py/objset.c
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-05-02 17:47:01 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-05-02 17:48:40 +0300
commitf54bcbf0997211a3d2a04bab09c79f602fa0c8e9 (patch)
tree66b17f3c5632a9cc8f4447d0971338d4d93f244b /py/objset.c
parente0954d426fdd1cdf2027963c80977ea373acb19e (diff)
downloadmicropython-f54bcbf0997211a3d2a04bab09c79f602fa0c8e9.tar.gz
micropython-f54bcbf0997211a3d2a04bab09c79f602fa0c8e9.zip
py, unix: Make "mpconfig.h" be first included, as other headers depend on it.
Specifically, nlr.h does.
Diffstat (limited to 'py/objset.c')
-rw-r--r--py/objset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objset.c b/py/objset.c
index db3683f608..1d10f94e81 100644
--- a/py/objset.c
+++ b/py/objset.c
@@ -2,9 +2,9 @@
#include <string.h>
#include <assert.h>
+#include "mpconfig.h"
#include "nlr.h"
#include "misc.h"
-#include "mpconfig.h"
#include "qstr.h"
#include "obj.h"
#include "runtime.h"