aboutsummaryrefslogtreecommitdiffstats
path: root/src/syswait.h
diff options
context:
space:
mode:
authorMiles Bader2008-01-30 07:57:28 +0000
committerMiles Bader2008-01-30 07:57:28 +0000
commitd235ca2ff8fab139ce797757fcb159d1e28fa7e0 (patch)
tree96c5cd1a06a0d9dc26e8470c6eabfc032c0046f3 /src/syswait.h
parent3709a060f679dba14df71ae64a0035fa2b5b3106 (diff)
parent02cbe062bee38a6705bafb1699d77e3c44cfafcf (diff)
downloademacs-d235ca2ff8fab139ce797757fcb159d1e28fa7e0.tar.gz
emacs-d235ca2ff8fab139ce797757fcb159d1e28fa7e0.zip
Merge from emacs--devo--0
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-324
Diffstat (limited to 'src/syswait.h')
-rw-r--r--src/syswait.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syswait.h b/src/syswait.h
index 9f652a63b85..6bfab435459 100644
--- a/src/syswait.h
+++ b/src/syswait.h
@@ -79,7 +79,7 @@ Boston, MA 02110-1301, USA. */
79 79
80#else /* not WAIT_USE_INT */ 80#else /* not WAIT_USE_INT */
81 81
82#if (!defined (BSD_SYSTEM) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER)) 82#if (!defined (BSD_SYSTEM) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER))
83#define WAITTYPE int 83#define WAITTYPE int
84#define WIFSTOPPED(w) ((w&0377) == 0177) 84#define WIFSTOPPED(w) ((w&0377) == 0177)
85#define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0) 85#define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0)
@@ -129,7 +129,7 @@ Boston, MA 02110-1301, USA. */
129#ifndef WIFEXITED 129#ifndef WIFEXITED
130#define WIFEXITED(w) (WTERMSIG (w) == 0) 130#define WIFEXITED(w) (WTERMSIG (w) == 0)
131#endif 131#endif
132#endif /* BSD_SYSTEM || UNIPLUS || STRIDE || HPUX */ 132#endif /* BSD_SYSTEM || HPUX */
133#endif /* not WAIT_USE_INT */ 133#endif /* not WAIT_USE_INT */
134#endif /* no WAITTYPE */ 134#endif /* no WAITTYPE */
135 135