diff options
| author | Richard M. Stallman | 1995-02-11 22:07:09 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-02-11 22:07:09 +0000 |
| commit | a5425c8d9a5234dc8cc3f2aef18a78f36db8ab24 (patch) | |
| tree | 2156d759c7c640b2712a934e7a5b7ae784bbbbcf /src/syswait.h | |
| parent | 2c32be5080bc600161924aaffa4426bc02054b1d (diff) | |
| download | emacs-a5425c8d9a5234dc8cc3f2aef18a78f36db8ab24.tar.gz emacs-a5425c8d9a5234dc8cc3f2aef18a78f36db8ab24.zip | |
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. */ | |||
| 23 | 23 | ||
| 24 | #ifndef VMS | 24 | #ifndef VMS |
| 25 | #ifndef WAITTYPE | 25 | #ifndef WAITTYPE |
| 26 | #if (!defined (BSD) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER)) || defined (LINUX) | 26 | #if (!defined (BSD) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER)) || defined (LINUX) || defined (WAIT_USE_INT) |
| 27 | #define WAITTYPE int | 27 | #define WAITTYPE int |
| 28 | #define WIFSTOPPED(w) ((w&0377) == 0177) | 28 | #define WIFSTOPPED(w) ((w&0377) == 0177) |
| 29 | #define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0) | 29 | #define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0) |