From a8f0c5a316c79716ff6cb9bb9f6049d228e6dfc5 Mon Sep 17 00:00:00 2001 From: Rasmus Lerdorf Date: Sun, 6 Aug 2000 04:55:17 +0000 Subject: [PATCH] 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. --- main/php.h | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.50.1