aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c
index 84a4dbd0c7e..2b2fc8304dc 100644
--- a/src/process.c
+++ b/src/process.c
@@ -110,7 +110,7 @@ static Lisp_Object stream_process;
110 110
111#ifndef VMS 111#ifndef VMS
112#ifndef WAITTYPE 112#ifndef WAITTYPE
113#if !defined (BSD) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER) 113#if (!defined (BSD) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER)) || defined (LINUX)
114#define WAITTYPE int 114#define WAITTYPE int
115#define WIFSTOPPED(w) ((w&0377) == 0177) 115#define WIFSTOPPED(w) ((w&0377) == 0177)
116#define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0) 116#define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0)