commit | 59c675a64c1d9757d50ad4627da67a6f996a99fb | [log] [tgz] |
---|---|---|
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | Sat Jun 21 22:43:22 2014 +0300 |
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | Sat Jun 21 22:43:22 2014 +0300 |
tree | 8a5163fe244f5d5c61aa92c179aeb54ddea37610 | |
parent | 4c4b9d15ab94dfe31ec34559ab70bafc0ef11f02 [diff] [blame] |
py: Include mpconfig.h before all other includes. It defines types used by all other headers. Fixes #691.
diff --git a/py/parsenum.c b/py/parsenum.c index 36b0690..b9801ab 100644 --- a/py/parsenum.c +++ b/py/parsenum.c
@@ -27,8 +27,8 @@ #include <stdbool.h> #include <stdlib.h> -#include "misc.h" #include "mpconfig.h" +#include "misc.h" #include "qstr.h" #include "nlr.h" #include "obj.h"