summaryrefslogtreecommitdiff
path: root/main/php.h
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2000-08-06 04:55:17 +0000
committerRasmus Lerdorf <rasmus@php.net>2000-08-06 04:55:17 +0000
commita8f0c5a316c79716ff6cb9bb9f6049d228e6dfc5 (patch)
tree8b8a6899c5669a894bbf86062cba23d23a260ca6 /main/php.h
parent640501ab19f0d2c07ae8bf127b07f1887ac29de4 (diff)
downloadphp-git-a8f0c5a316c79716ff6cb9bb9f6049d228e6dfc5.tar.gz
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.
Diffstat (limited to 'main/php.h')
-rw-r--r--main/php.h2
1 files changed, 2 insertions, 0 deletions
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