projects
/
users
/
hanada
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
925ea01
)
change '#if defined(PORTNAME_sparc)' to '#if !defined(HAVE_MEMMOVE)'
author
Marc G. Fournier
<
[email protected]
>
Sun, 20 Oct 1996 20:57:06 +0000
(20:57 +0000)
committer
Marc G. Fournier
<
[email protected]
>
Sun, 20 Oct 1996 20:57:06 +0000
(20:57 +0000)
src/include/regex/utils.h
patch
|
blob
|
blame
|
history
diff --git
a/src/include/regex/utils.h
b/src/include/regex/utils.h
index cbab44259e0703849630675ebf186c96e3a38f8d..e2d8b6cda36aa10c2ec4928defecb94637ab5ec7 100644
(file)
--- 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