diff options
Diffstat (limited to 'src')
| -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) |