diff options
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/inc/rsclex.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rsc/inc/rsclex.hxx b/rsc/inc/rsclex.hxx index 70fda227f10f..f98a7506e552 100644 --- a/rsc/inc/rsclex.hxx +++ b/rsc/inc/rsclex.hxx @@ -99,11 +99,11 @@ class ObjectStack #if defined ( SOLARIS ) extern "C" int yyparse(); // forward Deklaration fuer erzeugte Funktion extern "C" void yyerror( const char * ); -extern "C" int yylex( void ); +extern "C" int yylex(); #else int yyparse(); // forward Deklaration fuer erzeugte Funktion void yyerror( char * ); -int yylex( void ); +int yylex(); #endif class RscTypCont; |