]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove `|| defined (LINUX)' from #if condition.
authorRichard M. Stallman <rms@gnu.org>
Fri, 12 Apr 1996 06:06:34 +0000 (06:06 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 12 Apr 1996 06:06:34 +0000 (06:06 +0000)
src/syswait.h

index 089aab9c0932cd8e16bedfb0fbff6a57faefcffc..7127b3966ceea1a9ffef8a4343eb9030996f6939 100644 (file)
@@ -34,7 +34,7 @@ Boston, MA 02111-1307, USA.  */
 
 #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)