diff --git a/Zend/zend-parser.y b/Zend/zend-parser.y index c58c4733ae5..1a8f3e6fdbd 100644 --- a/Zend/zend-parser.y +++ b/Zend/zend-parser.y @@ -27,12 +27,6 @@ * */ -#define YYERROR_VERBOSE -#define YYSTYPE znode -#ifdef ZTS -# define YYPARSE_PARAM compiler_globals -# define YYLEX_PARAM compiler_globals -#endif #include "zend_compile.h" #include "zend.h" @@ -42,6 +36,12 @@ #include "zend_variables.h" #include "zend_operators.h" +#define YYERROR_VERBOSE +#define YYSTYPE znode +#ifdef ZTS +# define YYPARSE_PARAM compiler_globals +# define YYLEX_PARAM compiler_globals +#endif %}