aboutsummaryrefslogtreecommitdiff
path: root/src/include/regex/utils.h
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-10-20 20:57:06 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-10-20 20:57:06 +0000
commit331bb53b0fe5ef31a4d8ab6736b85ec12552e0f2 (patch)
treef2e918a47b5a0debba42689a11f15b8d053670d9 /src/include/regex/utils.h
parent925ea01ed6ff21938b1fc6b904c5214e7705f118 (diff)
downloadpostgresql-331bb53b0fe5ef31a4d8ab6736b85ec12552e0f2.tar.gz
postgresql-331bb53b0fe5ef31a4d8ab6736b85ec12552e0f2.zip
change '#if defined(PORTNAME_sparc)' to '#if !defined(HAVE_MEMMOVE)'
Diffstat (limited to 'src/include/regex/utils.h')
-rw-r--r--src/include/regex/utils.h3
1 files changed, 1 insertions, 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