diff options
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/inc/rsclex.hxx | 4 | ||||
-rw-r--r-- | rsc/source/parser/rsckey.cxx | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/rsc/inc/rsclex.hxx b/rsc/inc/rsclex.hxx index 838bf845721d..a2ad19f32fb3 100644 --- a/rsc/inc/rsclex.hxx +++ b/rsc/inc/rsclex.hxx @@ -100,11 +100,7 @@ extern "C" int yyparse(); // forward Deklaration fuer erzeugte Funktion extern "C" void yyerror( const char * ); extern "C" int yylex( void ); #else -#if defined ( GCC ) || (_MSC_VER >= 1400) int yyparse(); // forward Deklaration fuer erzeugte Funktion -#else -yyparse(); // forward Deklaration fuer erzeugte Funktion -#endif void yyerror( char * ); int yylex( void ); #endif diff --git a/rsc/source/parser/rsckey.cxx b/rsc/source/parser/rsckey.cxx index dda03cfd1760..6667ee058fe9 100644 --- a/rsc/source/parser/rsckey.cxx +++ b/rsc/source/parser/rsckey.cxx @@ -27,7 +27,7 @@ #include <rschash.hxx> #include <rsckey.hxx> -#if defined(_MSC_VER) && (_MSC_VER >= 1200 ) +#ifdef _MSC_VER #define _cdecl __cdecl #endif |