diff --git a/harbour/ChangeLog b/harbour/ChangeLog index d5c80525c4..1235034052 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,4 +1,8 @@ -2001-02-20 23:10 UTC-0800 Ron Pinkas +2001-02-20 22:20 UTC-0800 Ron Pinkas + * utils/hbpp//hbpp.c + - Removed unused variables and function warnned by djgpp + +2001-02-20 22:00 UTC-0800 Ron Pinkas * make_gnu.bat ! Fixed maker to make -r * Added %HARBOURDIR% and removed trailing slash from HB_BIN_INSTALL, HB_LIB_INSTALL and HB_INC_INSTALL diff --git a/harbour/utils/hbpp/hbpp.c b/harbour/utils/hbpp/hbpp.c index fd9486b902..ab077354c9 100644 --- a/harbour/utils/hbpp/hbpp.c +++ b/harbour/utils/hbpp/hbpp.c @@ -53,13 +53,11 @@ extern int hb_pp_ParseDefine( char * ); -static int hb_pp_Parse( FILE * handl_o ); static void AddSearchPath( char * szPath, PATHNAMES * * pSearchList ); static void OutTable( DEFINES * endDefine, COMMANDS * endCommand ); static BOOL hb_pp_fopen( char * szFileName ); static char s_szLine[ HB_PP_STR_SIZE ]; -static char s_szOutLine[ HB_PP_STR_SIZE ]; static int s_iWarnings = 0; static char * hb_buffer; @@ -90,7 +88,6 @@ int main( int argc, char * argv[] ) char szPpoName[ _POSIX_PATH_MAX ]; char * szDefText; int iArg = 1; - unsigned int i; BOOL bOutTable = FALSE; BOOL bOutNew = FALSE; DEFINES * stdef;