From: Dave Love Date: Tue, 19 Nov 2002 14:47:11 +0000 (+0000) Subject: (bcopy, bzero, bcmp): Don't define. X-Git-Tag: ttn-vms-21-2-B4~12337 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=04dbfa089e35a28b358e404a0b6dfe6ad133af2b;p=emacs.git (bcopy, bzero, bcmp): Don't define. --- diff --git a/src/ChangeLog b/src/ChangeLog index aa0e9e66cd7..2f541fbff1d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2002-11-19 Dave Love + + * s/usg5-4.h, sco4.h (bcopy, bzero, bcmp): Don't define. + 2002-11-18 Jason Rumney * w32fns.c (x_build_heuristic_mask): Filter palette info from color. diff --git a/src/s/sco4.h b/src/s/sco4.h index e4546b88a38..6015ec66385 100644 --- a/src/s/sco4.h +++ b/src/s/sco4.h @@ -128,11 +128,6 @@ Boston, MA 02111-1307, USA. */ #define MAIL_PROGRAM_NAME "/usr/lib/mail/execmail" #endif -/* miano@acosta.enet.dec.com says these are needed. */ -#define bcopy(b1,b2,len) memmove (b2, b1, len) -#define bzero(b,len) memset (b, 0, len) -#define bcmp(b1,b2,len) memcmp (b1, b2, len) - /* Tell process_send_signal to use VSUSP instead of VSWTCH. */ #define PREFER_VSUSP diff --git a/src/s/usg5-4.h b/src/s/usg5-4.h index 097bded32fe..49554b9456f 100644 --- a/src/s/usg5-4.h +++ b/src/s/usg5-4.h @@ -189,14 +189,6 @@ Boston, MA 02111-1307, USA. */ So give it a try. */ #define HAVE_SOCKETS -#ifndef HAVE_BCOPY -#define bcopy(src,dst,n) memmove (dst,src,n) -#define bzero(s,n) memset (s,0,n) -#endif -#ifndef HAVE_BCMP -#define bcmp(src,dst,n) memcmp (src,dst,n) -#endif - /* Markus Weiand says this is needed for Motif on SINIX. */ #undef LIBS_SYSTEM