1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 03:40:56 -08:00

(bcopy) Use memmove instead of memcpy.

This commit is contained in:
Richard M. Stallman 1993-12-26 06:04:51 +00:00
parent 4fb83f3cde
commit 6d1e5a964e

View 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)