* system.h (bcopy): Implement with memmove not memcpy.

From-SVN: r24727
This commit is contained in:
Richard Henderson 1999-01-17 13:06:36 -08:00 committed by Richard Henderson
parent ef2b940d6c
commit b3c9dc1aea
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@ Sun Jan 17 21:04:31 1999 Richard Henderson <rth@cygnus.com>
* jump.c (rtx_renumbered_equal_p): Special case CODE_LABEL.
* system.h (bcopy): Implement with memmove not memcpy.
Sun Jan 17 19:23:20 1999 Jeffrey A Law (law@cygnus.com)
* Makefile.in (cppulp.o): Add dependencies.

View File

@ -220,7 +220,7 @@ extern int errno;
extern void bcopy ();
# endif
# else /* ! HAVE_BCOPY */
# define bcopy(src,dst,len) memcpy ((dst),(src),(len))
# define bcopy(src,dst,len) memmove((dst),(src),(len))
# endif
#endif