From 861c34b4657f77f20c85880165cae7fb35fde6a8 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 12 Apr 1996 06:06:34 +0000 Subject: Remove `|| defined (LINUX)' from #if condition. --- src/syswait.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/syswait.h b/src/syswait.h index 089aab9c093..7127b3966ce 100644 --- a/src/syswait.h +++ b/src/syswait.h @@ -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) -- cgit v1.2.1