From: Rasmus Lerdorf Date: Sun, 6 Aug 2000 04:55:17 +0000 (+0000) Subject: decouple this check just in case we hit a weird system that has one X-Git-Tag: PRE_FILE_COMPILE_API_CHANGE~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a8f0c5a316c79716ff6cb9bb9f6049d228e6dfc5;p=php decouple this check just in case we hit a weird system that has one and not the other. And we specifically check for this, so we should use the information. --- diff --git a/main/php.h b/main/php.h index f2d740e239..a3f99a3c5f 100644 --- a/main/php.h +++ b/main/php.h @@ -150,6 +150,8 @@ typedef zval pval; #else # ifndef HAVE_MEMCPY # define memcpy(d, s, n) bcopy((s), (d), (n)) +# endif +# ifndef HAVE_MEMMOVE # define memmove(d, s, n) bcopy ((s), (d), (n)) # endif #endif