aboutsummaryrefslogtreecommitdiffstats
path: root/src/syswait.h
diff options
context:
space:
mode:
authorPaul Eggert2014-05-04 12:37:56 -0700
committerPaul Eggert2014-05-04 12:37:56 -0700
commit3e9fa60a5c99568817a12a1011b0e61cce5d3a67 (patch)
tree831a801351db662f324d0709bf1fee718eda63e9 /src/syswait.h
parentbbdcf64f499636ba9567e8fed8f209e06380352c (diff)
parent61febcb6e32860575316b8a539a2e9f13f70e3c2 (diff)
downloademacs-3e9fa60a5c99568817a12a1011b0e61cce5d3a67.tar.gz
emacs-3e9fa60a5c99568817a12a1011b0e61cce5d3a67.zip
Merge from emacs-24; up to 2014-05-04T21:18:30Z!eggert@cs.ucla.edu
Diffstat (limited to 'src/syswait.h')
-rw-r--r--src/syswait.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/syswait.h b/src/syswait.h
index db197b82fb7..9c8cbd51f00 100644
--- a/src/syswait.h
+++ b/src/syswait.h
@@ -29,6 +29,10 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
29#include <sys/wait.h> 29#include <sys/wait.h>
30#endif /* !HAVE_SYS_WAIT_H */ 30#endif /* !HAVE_SYS_WAIT_H */
31 31
32#ifndef WCONTINUED
33#define WCONTINUED 8
34#endif
35
32#ifndef WCOREDUMP /* not POSIX */ 36#ifndef WCOREDUMP /* not POSIX */
33#define WCOREDUMP(status) ((status) & 0x80) 37#define WCOREDUMP(status) ((status) & 0x80)
34#endif 38#endif