From 331bb53b0fe5ef31a4d8ab6736b85ec12552e0f2 Mon Sep 17 00:00:00 2001
From: "Marc G. Fournier" <scrappy@hub.org>
Date: Sun, 20 Oct 1996 20:57:06 +0000
Subject: [PATCH] change '#if defined(PORTNAME_sparc)' to '#if
 !defined(HAVE_MEMMOVE)'

---
 src/include/regex/utils.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/include/regex/utils.h b/src/include/regex/utils.h
index cbab44259e0..e2d8b6cda36 100644
--- a/src/include/regex/utils.h
+++ b/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
-- 
GitLab