]> git.eshelyaron.com Git - emacs.git/commitdiff
(bcopy, bzero, bcmp): Don't define.
authorDave Love <fx@gnu.org>
Tue, 19 Nov 2002 14:47:11 +0000 (14:47 +0000)
committerDave Love <fx@gnu.org>
Tue, 19 Nov 2002 14:47:11 +0000 (14:47 +0000)
src/ChangeLog
src/s/sco4.h
src/s/usg5-4.h

index aa0e9e66cd7cd647dd642793c00ea75d59351af8..2f541fbff1d9a8ecf021cb4381d775b887f12fc0 100644 (file)
@@ -1,3 +1,7 @@
+2002-11-19  Dave Love  <fx@gnu.org>
+
+       * s/usg5-4.h, sco4.h (bcopy, bzero, bcmp): Don't define.
+
 2002-11-18  Jason Rumney  <jasonr@gnu.org>
 
        * w32fns.c (x_build_heuristic_mask): Filter palette info from color.
index e4546b88a38ed3a17016cd27dfd43cd4ffd39e09..6015ec66385b944dff86ebe5a6071c9d46d222dc 100644 (file)
@@ -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
 
index 097bded32fe40ff55525f76c788b56119874f1c9..49554b9456fe9b0776a26f733a6bab5227d63903 100644 (file)
@@ -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 <weiand@khof.com> says this is needed for Motif on
    SINIX.  */
 #undef LIBS_SYSTEM