]> code.delx.au - gnu-emacs/blobdiff - src/syswait.h
Make eww message toggling message clearer
[gnu-emacs] / src / syswait.h
index db197b82fb77a35bea4d6fb55c98b4c7b4ee5ca8..ca672d1679efeedaa09bc3273edf878791cd2921 100644 (file)
@@ -1,5 +1,5 @@
 /* Define wait system call interface for Emacs.
-   Copyright (C) 1993-1995, 2000-2014 Free Software Foundation, Inc.
+   Copyright (C) 1993-1995, 2000-2016 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -29,6 +29,10 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include <sys/wait.h>
 #endif  /* !HAVE_SYS_WAIT_H */
 
+#ifndef WCONTINUED
+#define WCONTINUED 8
+#endif
+
 #ifndef WCOREDUMP              /* not POSIX */
 #define WCOREDUMP(status) ((status) & 0x80)
 #endif