]> git.eshelyaron.com Git - emacs.git/commitdiff
(bcopy) Use memmove instead of memcpy.
authorRichard M. Stallman <rms@gnu.org>
Sun, 26 Dec 1993 06:04:51 +0000 (06:04 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 26 Dec 1993 06:04:51 +0000 (06:04 +0000)
src/s/usg5-4.h

index f319ecd2d222b3b4e595d54ade9a17c21a683706..34a19bd37b0e7446afd36f1314b8b55fcc7ab4ea 100644 (file)
@@ -196,6 +196,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
    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)