diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-02-11 22:07:09 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-02-11 22:07:09 +0000 |
commit | 70461f7f7879e180f45ebdf4ea743d069a0d642f (patch) | |
tree | ffe29cc41774a3e0d9915dcde3b80361de00bbd1 /src/syswait.h | |
parent | d6c8c83c19c1a3b3887a191e5049199fffed9d21 (diff) | |
download | emacs-70461f7f7879e180f45ebdf4ea743d069a0d642f.tar.gz |
Test WAIT_USE_INT.
Diffstat (limited to 'src/syswait.h')
-rw-r--r-- | src/syswait.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) |