summaryrefslogtreecommitdiff
path: root/src/syswait.h
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-02-11 22:07:09 +0000
committerRichard M. Stallman <rms@gnu.org>1995-02-11 22:07:09 +0000
commita5425c8d9a5234dc8cc3f2aef18a78f36db8ab24 (patch)
tree2156d759c7c640b2712a934e7a5b7ae784bbbbcf /src/syswait.h
parent2c32be5080bc600161924aaffa4426bc02054b1d (diff)
downloademacs-a5425c8d9a5234dc8cc3f2aef18a78f36db8ab24.tar.gz
Test WAIT_USE_INT.
Diffstat (limited to 'src/syswait.h')
-rw-r--r--src/syswait.h2
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)