changeset 48084:7853f9048269

(bcopy, bzero): Define conditional on HAVE_BCOPY. (bcmp): Define conditional on HAVE_BCMP. (NO_SIOCTL_H): Don't define. (TIOCSIGSEND): Don't make conditional on IRIX6.
author Dave Love <fx@gnu.org>
date Wed, 30 Oct 2002 18:59:01 +0000
parents 1ff808bd5f94
children 1c06bf924a62
files src/s/usg5-4.h
diffstat 1 files changed, 5 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/src/s/usg5-4.h	Wed Oct 30 18:58:46 2002 +0000
+++ b/src/s/usg5-4.h	Wed Oct 30 18:59:01 2002 +0000
@@ -57,13 +57,6 @@
 /* there are no -lg libraries on this system, and no libPW */
 
 #define LIBS_DEBUG
-/* This is turned off because nobody actually uses LIBS_STANDARD (Nov 1995).
-   That name is a typo.  The next step is to delete this entirely.  */
-/* #define LIBS_STANDARD -lc */
-
-/* No <sioctl.h> */
-
-#define NO_SIOCTL_H
 
 /* Undump with ELF */
 
@@ -135,9 +128,7 @@
    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,9 +189,13 @@
    So give it a try.  */
 #define HAVE_SOCKETS
 
+#ifndef HAVE_BCOPY
 #define bcopy(src,dst,n)	memmove (dst,src,n)
+#define bzero(s,n)		memset (s,0,n)
+#endif
+#ifndef HAVE_BCMP
 #define bcmp(src,dst,n)		memcmp (src,dst,n)
-#define bzero(s,n)		memset (s,0,n)
+#endif
 
 /* Markus Weiand <weiand@khof.com> says this is needed for Motif on
    SINIX.  */