Commit 331bb53b authored by Marc G. Fournier's avatar Marc G. Fournier

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

parent 925ea01e
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment