Mercurial > emacs
diff src/syswait.h @ 10715:9278298301fb
Test WAIT_USE_INT.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 11 Feb 1995 22:07:09 +0000 |
parents | 1a2b17eab8d9 |
children | d8bc42dd7235 |
line wrap: on
line diff
--- a/src/syswait.h Sat Feb 11 22:05:56 1995 +0000 +++ b/src/syswait.h Sat Feb 11 22:07:09 1995 +0000 @@ -23,7 +23,7 @@ #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)