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

REL2_0B
Marc G. Fournier 29 years ago
parent 925ea01ed6
commit 331bb53b0f
  1. 3
      src/include/regex/utils.h

@ -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

Loading…
Cancel
Save