See ChangeLog entry 2001-11-20 22:45 UTC-0500 David G. Holm <dholm@jsd-llc.com>
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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 */
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user