See ChangeLog entry 2001-11-20 22:45 UTC-0500 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2001-11-21 03:46:55 +00:00
parent c1cfb01acf
commit e2f40918a8
3 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2001-11-20 22:45 UTC-0500 David G. Holm <dholm@jsd-llc.com>
* source/compiler/harbour.y
* source/macro/macro.y
! Exclude IBM C++ from the declaration of __yy_memcpy.
2001-11-20 23:59 GMT+1 Maurilio Longo <maurilio.longo@libero.it>
* source/debug/debugger.prg
! ::ShowCode() was using At( ":", cModuleName ) to divide procedure name from module name,

View File

@@ -55,7 +55,7 @@ extern void yy_delete_buffer( void * ); /* yacc functions to manage multiple fil
#endif
/* lex & yacc related prototypes */
#if !defined(__GNUC__)
#if !defined(__GNUC__) && !defined(__IBMCPP__)
extern void __yy_memcpy ( char*, char*, unsigned int ); /* to satisfy Borland compiler */
#endif
extern int yyparse( void ); /* main yacc parsing function */

View File

@@ -78,7 +78,7 @@
/* This is workaround of yyparse() declaration bug in bison.simple
*/
#if !defined(__GNUC__)
#if !defined(__GNUC__) && !defined(__IBMCPP__)
void __yy_memcpy ( char*, char*, unsigned int ); /* to satisfy Borland compiler */
#endif