change '#if defined(PORTNAME_sparc)' to '#if !defined(HAVE_MEMMOVE)'

This commit is contained in:
Marc G. Fournier 1996-10-20 20:57:06 +00:00
parent 925ea01ed6
commit 331bb53b0f
1 changed files with 1 additions and 2 deletions

View File

@ -49,9 +49,8 @@ typedef unsigned char uch;
#define NDEBUG /* no assertions please */
#endif
#endif
#include <assert.h>
/* for old systems with bcopy() but no memmove() */
#if defined(PORTNAME_sparc)
#if !defined(HAVE_MEMMOVE)
#define memmove(d, s, c) bcopy(s, d, c)
#endif