From: Gerd Moellmann Date: Fri, 15 Dec 2000 14:49:08 +0000 (+0000) Subject: (bcopy) [IRIX6]: Don't special-case definition of X-Git-Tag: emacs-pretest-21.0.95~481 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=33a29a4a6e1a4dc410e2fa58f381ec11d1a9cfb2;p=emacs.git (bcopy) [IRIX6]: Don't special-case definition of bcopy & al. --- diff --git a/src/s/usg5-4.h b/src/s/usg5-4.h index 95cd4392411..70fb8ccb74d 100644 --- a/src/s/usg5-4.h +++ b/src/s/usg5-4.h @@ -1,5 +1,5 @@ /* Definitions file for GNU Emacs running on AT&T's System V Release 4 - Copyright (C) 1987, 1990, 1999 Free Software Foundation, Inc. + Copyright (C) 1987, 1990, 1999, 2000 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -198,11 +198,9 @@ Boston, MA 02111-1307, USA. */ So give it a try. */ #define HAVE_SOCKETS -#ifndef IRIX6 #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) -#endif /* Markus Weiand says this is needed for Motif on SINIX. */