]> git.eshelyaron.com Git - emacs.git/commitdiff
(TIOCSIGSEND): Don't define this if irix6.
authorKarl Heuer <kwzh@gnu.org>
Wed, 16 Dec 1998 21:46:44 +0000 (21:46 +0000)
committerKarl Heuer <kwzh@gnu.org>
Wed, 16 Dec 1998 21:46:44 +0000 (21:46 +0000)
(bcopy, bcmp, bzero): Likewise.

src/s/usg5-4.h

index ebb848199eb1d1a3531e9ec8e5a7c74574a14417..8681cee6acce5890736b05c61e0370f215de6aac 100644 (file)
@@ -137,7 +137,9 @@ Boston, MA 02111-1307, USA.  */
    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 @@ 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