diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 9e79efbf84..df4e693c85 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,8 @@ +20000320-13:45 GMT+1 Ryszard Glab + + *source/macro/macro.y + *added declaration of yyparse() function + 20000320-13:10 GMT+1 Ryszard Glab *source/compiler/harbour.y diff --git a/harbour/source/macro/macro.y b/harbour/source/macro/macro.y index db4e165a08..a3c9992386 100644 --- a/harbour/source/macro/macro.y +++ b/harbour/source/macro/macro.y @@ -70,6 +70,7 @@ #undef YYLEX_PARAM #define YYLEX_PARAM ( (HB_MACRO_PTR)YYPARSE_PARAM ) /* additional parameter passed to yylex */ +extern int yyparse( void * ); /* to make happy some purist compiler */ extern void * hb_compFlexNew( HB_MACRO_PTR ); extern void hb_compFlexDelete( void * );