diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 04d11c36fe..a9b67774a9 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,10 @@ +19990801-21:58 GMT+1 Victor Szel + % source/rtl/descend.c + #include removed + ! source/compiler/harbour.y - + hb_INITSTATICS() -> HB_INITSTATICS() (case adjusted) + Change undone. Comment added to make this clear. + 19990801-21:58 GMT+1 Bruno Cantero * source/rdd/dbcmd.c Fixed a GPF with MSVC, thaks Paul diff --git a/harbour/source/compiler/harbour.y b/harbour/source/compiler/harbour.y index d971d3a9e2..56e8e9cc7c 100644 --- a/harbour/source/compiler/harbour.y +++ b/harbour/source/compiler/harbour.y @@ -2137,7 +2137,7 @@ void GenCCode( char *szFileName, char *szName ) /* generates the C languag fprintf( yyc, "static " ); if( pFunc == _pInitFunc ) - fprintf( yyc, "HARBOUR HB_INITSTATICS( void );\n" ); + fprintf( yyc, "HARBOUR hb_INITSTATICS( void );\n" ); /* NOTE: hb_ intentionally in lower case */ else fprintf( yyc, "HARBOUR HB_%s( void );\n", pFunc->szName ); pFunc = pFunc->pNext; @@ -2170,7 +2170,7 @@ void GenCCode( char *szFileName, char *szName ) /* generates the C languag * we are using these two bits to mark the special function used to * initialize static variables */ - fprintf( yyc, "{ \"(_INITSTATICS)\", FS_INIT | FS_EXIT, HB_INITSTATICS, 0}" ); + fprintf( yyc, "{ \"(_INITSTATICS)\", FS_INIT | FS_EXIT, hb_INITSTATICS, 0}" ); /* NOTE: hb_ intentionally in lower case */ } else { @@ -2224,7 +2224,7 @@ void GenCCode( char *szFileName, char *szName ) /* generates the C languag fprintf( yyc, "static " ); if( pFunc == _pInitFunc ) /* Is it (_INITSTATICS) */ - fprintf( yyc, "HARBOUR HB_INITSTATICS( void )\n{\n static BYTE pcode[] = { \n" ); + fprintf( yyc, "HARBOUR hb_INITSTATICS( void )\n{\n static BYTE pcode[] = { \n" ); /* NOTE: hb_ intentionally in lower case */ else fprintf( yyc, "HARBOUR HB_%s( void )\n{\n static BYTE pcode[] = { \n", pFunc->szName ); diff --git a/harbour/source/rtl/descend.c b/harbour/source/rtl/descend.c index 8b18d97a23..a8df43290e 100644 --- a/harbour/source/rtl/descend.c +++ b/harbour/source/rtl/descend.c @@ -62,7 +62,6 @@ * $END$ */ -#include #include "extend.h" #include "itemapi.h" #include "init.h"