# HG changeset patch # User Richard M. Stallman # Date 792540429 0 # Node ID 9278298301fb5aca29fdcdbcc9ac6ba5a3fcd13a # Parent a383e6129216c8b8a9f85b8dc431133a727142f7 Test WAIT_USE_INT. diff -r a383e6129216 -r 9278298301fb src/syswait.h --- 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)