aboutsummaryrefslogtreecommitdiffstats
path: root/src/s
diff options
context:
space:
mode:
authorGerd Moellmann2000-12-15 14:49:08 +0000
committerGerd Moellmann2000-12-15 14:49:08 +0000
commit33a29a4a6e1a4dc410e2fa58f381ec11d1a9cfb2 (patch)
tree03bcd0871c8d24014603baad47d14e26aa6cf061 /src/s
parente61a9a9b83bdc5544d7de17895845281d6630ef8 (diff)
downloademacs-33a29a4a6e1a4dc410e2fa58f381ec11d1a9cfb2.tar.gz
emacs-33a29a4a6e1a4dc410e2fa58f381ec11d1a9cfb2.zip
(bcopy) [IRIX6]: Don't special-case definition of
bcopy & al.
Diffstat (limited to 'src/s')
-rw-r--r--src/s/usg5-4.h4
1 files changed, 1 insertions, 3 deletions
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 @@
1/* Definitions file for GNU Emacs running on AT&T's System V Release 4 1/* Definitions file for GNU Emacs running on AT&T's System V Release 4
2 Copyright (C) 1987, 1990, 1999 Free Software Foundation, Inc. 2 Copyright (C) 1987, 1990, 1999, 2000 Free Software Foundation, Inc.
3 3
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
5 5
@@ -198,11 +198,9 @@ Boston, MA 02111-1307, USA. */
198 So give it a try. */ 198 So give it a try. */
199#define HAVE_SOCKETS 199#define HAVE_SOCKETS
200 200
201#ifndef IRIX6
202#define bcopy(src,dst,n) memmove (dst,src,n) 201#define bcopy(src,dst,n) memmove (dst,src,n)
203#define bcmp(src,dst,n) memcmp (src,dst,n) 202#define bcmp(src,dst,n) memcmp (src,dst,n)
204#define bzero(s,n) memset (s,0,n) 203#define bzero(s,n) memset (s,0,n)
205#endif
206 204
207/* Markus Weiand <weiand@khof.com> says this is needed for Motif on 205/* Markus Weiand <weiand@khof.com> says this is needed for Motif on
208 SINIX. */ 206 SINIX. */