summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafayette.edu>2001-06-12 13:11:52 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-13 00:07:50 +0000
commit2253333fe456e42259ae7571ab31af43f7c33890 (patch)
tree2ee5f630f74619a733c8685d823dd8f051ab3a2f /proto.h
parenta290f2384a92c4c0c351e74a4ac9cc083281dcb2 (diff)
downloadperl-2253333fe456e42259ae7571ab31af43f7c33890.tar.gz
Small bcopy cleanup
Message-ID: <Pine.SOL.4.10.10106121706360.11034-100000@maxwell.phys.lafayette.edu> p4raw-id: //depot/perl@10542
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index ed4ba6c7f9..5bd0010206 100644
--- a/proto.h
+++ b/proto.h
@@ -486,7 +486,7 @@ PERL_CALLCONV int Perl_mode_from_discipline(pTHX_ SV* discp);
PERL_CALLCONV char* Perl_moreswitches(pTHX_ char* s);
PERL_CALLCONV OP* Perl_my(pTHX_ OP* o);
PERL_CALLCONV NV Perl_my_atof(pTHX_ const char *s);
-#if !defined(HAS_BCOPY) || !defined(HAS_SAFE_BCOPY)
+#if (!defined(HAS_MEMCPY) && !defined(HAS_BCOPY)) || (!defined(HAS_MEMMOVE) && !defined(HAS_SAFE_MEMCPY) && !defined(HAS_SAFE_BCOPY))
PERL_CALLCONV char* Perl_my_bcopy(const char* from, char* to, I32 len);
#endif
#if !defined(HAS_BZERO) && !defined(HAS_MEMSET)