]> code.delx.au - gnu-emacs/blobdiff - src/syswait.h
Update copyright year to 2015
[gnu-emacs] / src / syswait.h
index db197b82fb77a35bea4d6fb55c98b4c7b4ee5ca8..58918222e5e635b7cda087693f562efa9b9a2cf9 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-2015 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