mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
change '#if defined(PORTNAME_sparc)' to '#if !defined(HAVE_MEMMOVE)'
This commit is contained in:
parent
925ea01ed6
commit
331bb53b0f
@ -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…
Reference in New Issue
Block a user