Fix issue with xpat, use memcpy instead of memmove

This commit is contained in:
Gregory Casamento 2019-08-11 16:35:32 -04:00
parent 50565cf7f6
commit b35dca96f3

View File

@ -90,7 +90,7 @@ typedef char ICHAR;
#ifdef HAVE_BCOPY
#define memmove(d,s,l) bcopy((s),(d),(l))
#else
#define memmove(d,s,a) memcpy((d),(s),(l))
#define memmove(d,s,a) memcpy((d),(s),(a))
// #error memmove does not exist on this platform, nor is a substitute available
#endif /* HAVE_BCOPY */
#endif /* HAVE_MEMMOVE */