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.
This commit is contained in:
Rasmus Lerdorf 2000-08-06 04:55:17 +00:00
parent 640501ab19
commit a8f0c5a316

View file

@ -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