diff options
| -rw-r--r-- | src/s/usg5-4.h | 4 |
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 | ||