added a PROIO_yyparse function in order to compile again after defines have moved to wxexpr.cpp

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9400 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2001-02-20 17:41:58 +00:00
parent c3e646b47f
commit a8cc3ad1b0

View File

@ -18,6 +18,10 @@ static char yysccsid[] = "@(#)yaccpar 1.7 (Berkeley) 09/09/90";
extern "C" {
#endif
#endif
int yyparse(void);
int PROIO_yyparse(void) {
return yyparse() ;
}
int yylex(void);
int yylook(void);
int yywrap(void);