comparison src/s/usg5-4.h @ 34613:d4c7ac767031

(bcopy) [IRIX6]: Don't special-case definition of bcopy & al.
author Gerd Moellmann <gerd@gnu.org>
date Fri, 15 Dec 2000 14:49:08 +0000
parents 54fc79fa7000
children 7853f9048269 1bba557c4d52
comparison
equal deleted inserted replaced
34612:67fa8a547b3d 34613:d4c7ac767031
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
4 This file is part of GNU Emacs. 4 This file is part of GNU Emacs.
5 5
6 GNU Emacs is free software; you can redistribute it and/or modify 6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by 7 it under the terms of the GNU General Public License as published by
196 196
197 /* This definition was suggested for next release. 197 /* This definition was suggested for next release.
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. */
209 #undef LIBS_SYSTEM 207 #undef LIBS_SYSTEM
210 #define LIBS_SYSTEM -lgen 208 #define LIBS_SYSTEM -lgen