# HG changeset patch # User Richard M. Stallman # Date 829289194 0 # Node ID 90dc2b5d32c4cc579b3459a9dc79c77174ca6771 # Parent 3bafb8029b86035e5720071d36561da7abb950bf Remove `|| defined (LINUX)' from #if condition. diff -r 3bafb8029b86 -r 90dc2b5d32c4 src/syswait.h --- 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)