changeset 5356:70983b24cc69

(bcopy) Use memmove instead of memcpy.
author Richard M. Stallman <rms@gnu.org>
date Sun, 26 Dec 1993 06:04:51 +0000
parents ad4092c38f51
children b36dfc938ba4
files src/s/usg5-4.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/s/usg5-4.h	Sun Dec 26 06:04:18 1993 +0000
+++ b/src/s/usg5-4.h	Sun Dec 26 06:04:51 1993 +0000
@@ -196,6 +196,6 @@
    So give it a try.  */
 #define HAVE_SOCKETS
 
-#define bcopy(src,dst,n)	memcpy(dst,src,n)
+#define bcopy(src,dst,n)	memmove(dst,src,n)
 #define bcmp(src,dst,n)		memcmp(src,dst,n)
 #define bzero(s,n)		memset(s,0,n)