From: Richard M. Stallman Date: Sat, 11 Feb 1995 22:07:09 +0000 (+0000) Subject: Test WAIT_USE_INT. X-Git-Tag: emacs-19.34~5143 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a5425c8d9a5234dc8cc3f2aef18a78f36db8ab24;p=emacs.git Test WAIT_USE_INT. --- diff --git a/src/syswait.h b/src/syswait.h index 3bc1ec7aa97..6e21f75b7f7 100644 --- a/src/syswait.h +++ b/src/syswait.h @@ -23,7 +23,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef VMS #ifndef WAITTYPE -#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)) || defined (LINUX) || defined (WAIT_USE_INT) #define WAITTYPE int #define WIFSTOPPED(w) ((w&0377) == 0177) #define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0)