aboutsummaryrefslogtreecommitdiffstats
path: root/src/s
diff options
context:
space:
mode:
authorKarl Heuer1998-12-16 21:46:44 +0000
committerKarl Heuer1998-12-16 21:46:44 +0000
commitca493964089ecf3912a3f16e9118bb4e2bddacd7 (patch)
tree65022fe93bc16749427f45a4a7345c1301bf2165 /src/s
parent808903abddbd96e802fb2f2a8d5dd95f27129f8a (diff)
downloademacs-ca493964089ecf3912a3f16e9118bb4e2bddacd7.tar.gz
emacs-ca493964089ecf3912a3f16e9118bb4e2bddacd7.zip
(TIOCSIGSEND): Don't define this if irix6.
(bcopy, bcmp, bzero): Likewise.
Diffstat (limited to 'src/s')
-rw-r--r--src/s/usg5-4.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/s/usg5-4.h b/src/s/usg5-4.h
index ebb848199eb..8681cee6acc 100644
--- a/src/s/usg5-4.h
+++ b/src/s/usg5-4.h
@@ -137,7 +137,9 @@ Boston, MA 02111-1307, USA. */
137 subprocesses the usual way. But TIOCSIGNAL does work for PTYs, and 137 subprocesses the usual way. But TIOCSIGNAL does work for PTYs, and
138 this is all we need. */ 138 this is all we need. */
139 139
140#ifndef IRIX6
140#define TIOCSIGSEND TIOCSIGNAL 141#define TIOCSIGSEND TIOCSIGNAL
142#endif
141 143
142/* This change means that we don't loop through allocate_pty too many 144/* This change means that we don't loop through allocate_pty too many
143 times in the (rare) event of a failure. */ 145 times in the (rare) event of a failure. */
@@ -198,6 +200,8 @@ Boston, MA 02111-1307, USA. */
198 So give it a try. */ 200 So give it a try. */
199#define HAVE_SOCKETS 201#define HAVE_SOCKETS
200 202
203#ifndef IRIX6
201#define bcopy(src,dst,n) memmove (dst,src,n) 204#define bcopy(src,dst,n) memmove (dst,src,n)
202#define bcmp(src,dst,n) memcmp (src,dst,n) 205#define bcmp(src,dst,n) memcmp (src,dst,n)
203#define bzero(s,n) memset (s,0,n) 206#define bzero(s,n) memset (s,0,n)
207#endif