Index: const_lex.c =================================================================== --- const_lex.c (revision 36854) +++ const_lex.c (revision 36855) @@ -75,6 +75,7 @@ * mailing list: pcb-rnd (at) list.repo.hu (send "subscribe") */ #include + #include #include #include "../src_plugins/order/const_gram.h" #define lval ((pcb_ordc_STYPE *)(user_ctx)) @@ -91,7 +92,7 @@ (void)rule; switch(ruleid) { case 0:{ -#line 40 "const_lex.ul" +#line 41 "const_lex.ul" lval->un.i = atoi(ULX_BUF); return T_INTEGER; @@ -98,7 +99,7 @@ } return UREGLEX_NOP; case 1:{ -#line 46 "const_lex.ul" +#line 47 "const_lex.ul" lval->un.d = strtod(ULX_BUF, NULL); return T_FLOAT; @@ -105,7 +106,7 @@ } return UREGLEX_NOP; case 2:{ -#line 52 "const_lex.ul" +#line 53 "const_lex.ul" lval->un.s = rnd_strdup(ULX_BUF); return T_ID; @@ -112,7 +113,7 @@ } return UREGLEX_NOP; case 3:{ -#line 58 "const_lex.ul" +#line 59 "const_lex.ul" lval->un.s = rnd_strndup(ULX_TAGP(1), ULX_TAGL(1)); return T_QSTR; @@ -119,13 +120,13 @@ } return UREGLEX_NOP; case 4:{ -#line 64 "const_lex.ul" +#line 65 "const_lex.ul" return *ULX_BUF; } return UREGLEX_NOP; case 5:{ -#line 69 "const_lex.ul" +#line 70 "const_lex.ul" ULX_IGNORE; } Index: const_lex.ul =================================================================== --- const_lex.ul (revision 36854) +++ const_lex.ul (revision 36855) @@ -30,6 +30,7 @@ * mailing list: pcb-rnd (at) list.repo.hu (send "subscribe") */ #include + #include #include #include "../src_plugins/order/const_gram.h" #define lval ((pcb_ordc_STYPE *)(user_ctx))