changeset 23914:17d161505a18

(TIOCSIGSEND): Don't define this if irix6. (bcopy, bcmp, bzero): Likewise.
author Karl Heuer <kwzh@gnu.org>
date Wed, 16 Dec 1998 21:46:44 +0000
parents d755c5c3e9a2
children 7ce49fb0dfbc
files src/s/usg5-4.h
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/s/usg5-4.h	Wed Dec 16 21:45:24 1998 +0000
+++ b/src/s/usg5-4.h	Wed Dec 16 21:46:44 1998 +0000
@@ -137,7 +137,9 @@
    subprocesses the usual way.  But TIOCSIGNAL does work for PTYs, and
    this is all we need.  */
 
+#ifndef IRIX6
 #define TIOCSIGSEND TIOCSIGNAL
+#endif
 
 /* This change means that we don't loop through allocate_pty too many
    times in the (rare) event of a failure. */
@@ -198,6 +200,8 @@
    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