From c9c515d479e5dbe804649344fc6b20c0d078e154 Mon Sep 17 00:00:00 2001 From: Ryszard Glab Date: Mon, 20 Mar 2000 12:26:38 +0000 Subject: [PATCH] ChangeLog 20000320-13:45 GMT+1 --- harbour/ChangeLog | 5 +++++ harbour/source/macro/macro.y | 1 + 2 files changed, 6 insertions(+) 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 * );