]> git.eshelyaron.com Git - emacs.git/commitdiff
Test WAIT_USE_INT.
authorRichard M. Stallman <rms@gnu.org>
Sat, 11 Feb 1995 22:07:09 +0000 (22:07 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 11 Feb 1995 22:07:09 +0000 (22:07 +0000)
src/syswait.h

index 3bc1ec7aa97a0795cf0f988182a1eb9b28934395..6e21f75b7f763fc503871bc533eecedc72019c23 100644 (file)
@@ -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)