Re: two yyparse() functions in the same program

2008-08-02 Thread Aaron Jackson
On Aug 2, 2008, at 8:23 AM, george smith wrote: Hello, I am building a compiler where i need a parser for the front end and another one for the back end. So i will need two parsers in the same program but there will be a conflict between the function names as with the global variables. Is t

Re: two yyparse() functions in the same program

2008-08-02 Thread Jack Andrews
> one for the back end. So i will need two parsers in the same program > but there will be a conflict between the function names as with the global > variables. see -p ___ help-bison@gnu.org http://lists.gnu.org/mailman/listinfo/help-bison

two yyparse() functions in the same program

2008-08-02 Thread george smith
Hello, I am building a compiler where i need a parser for the front end and another one for the back end. So i will need two parsers in the same program but there will be a conflict between the function names as with the global variables. Is there any way to change the names to resolve any conficts