changeset 15000:90dc2b5d32c4

Remove `|| defined (LINUX)' from #if condition.
author Richard M. Stallman <rms@gnu.org>
date Fri, 12 Apr 1996 06:06:34 +0000
parents 3bafb8029b86
children c74ce6421d04
files src/syswait.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/syswait.h	Fri Apr 12 06:04:10 1996 +0000
+++ b/src/syswait.h	Fri Apr 12 06:06:34 1996 +0000
@@ -34,7 +34,7 @@
 
 #else /* not WAIT_USE_INT */
 
-#if (!defined (BSD) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER)) || defined (LINUX)
+#if (!defined (BSD) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER))
 #define WAITTYPE int
 #define WIFSTOPPED(w) ((w&0377) == 0177)
 #define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0)