summaryrefslogtreecommitdiff
path: root/uconfig.h
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafayette.edu>2001-06-22 10:29:51 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-22 20:12:29 +0000
commitb6cc3bc460dbae4c1ca13420b3042f223fd4d0d2 (patch)
tree41ed64d04dbc2679497e32fb4d2b07f8ad00f304 /uconfig.h
parent82b3da69da0db51b5d54622b7abbb40f4da89f73 (diff)
downloadperl-b6cc3bc460dbae4c1ca13420b3042f223fd4d0d2.tar.gz
Further tiny bcopy cleanup
Message-ID: <Pine.SOL.4.10.10106221417030.28044-100000@maxwell.phys.lafayette.edu> p4raw-id: //depot/perl@10831
Diffstat (limited to 'uconfig.h')
-rw-r--r--uconfig.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/uconfig.h b/uconfig.h
index 8c862f1f7b..28beb65ea5 100644
--- a/uconfig.h
+++ b/uconfig.h
@@ -1828,7 +1828,7 @@
/* HAS_SAFE_BCOPY:
* This symbol, if defined, indicates that the bcopy routine is available
- * to copy potentially overlapping memory blocks. Otherwise you should
+ * to copy potentially overlapping memory blocks. Normally, you should
* probably use memmove() or memcpy(). If neither is defined, roll your
* own version.
*/
@@ -1836,9 +1836,9 @@
/* HAS_SAFE_MEMCPY:
* This symbol, if defined, indicates that the memcpy routine is available
- * to copy potentially overlapping memory blocks. Otherwise you should
- * probably use memmove() or memcpy(). If neither is defined, roll your
- * own version.
+ * to copy potentially overlapping memory blocks. If you need to
+ * copy overlapping memory blocks, you should check HAS_MEMMOVE and
+ * use memmove() instead, if available.
*/
/*#define HAS_SAFE_MEMCPY / **/