From: Stefan Csomor Date: Tue, 20 Feb 2001 17:41:58 +0000 (+0000) Subject: added a PROIO_yyparse function in order to compile again after defines have moved... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a8cc3ad1b0964273f932661a4a1145d1007e9a45 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 --- diff --git a/src/common/cwy_tab.c b/src/common/cwy_tab.c index bfbe337922..ef1e1a2df7 100644 --- a/src/common/cwy_tab.c +++ b/src/common/cwy_tab.c @@ -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);