]> code.delx.au - gnu-emacs/blobdiff - src/syswait.h
Rework C source files to avoid ^(
[gnu-emacs] / src / syswait.h
index c56f2eec2a2e02d6ed247ea2b17d3d3f0a48667b..800d5721ceb3b07701b3ee1a0d09a1cc3cd80d0e 100644 (file)
@@ -1,12 +1,12 @@
 /* Define wait system call interface for Emacs.
-   Copyright (C) 1993-1995, 2000-2013 Free Software Foundation, Inc.
+   Copyright (C) 1993-1995, 2000-2016 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
 GNU Emacs is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 3 of the License, or
-(at your option) any later version.
+the Free Software Foundation, either version 3 of the License, or (at
+your option) any later version.
 
 GNU Emacs is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -25,10 +25,14 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #include <sys/types.h>
 
-#ifdef HAVE_SYS_WAIT_H /* We have sys/wait.h with POSIXoid definitions. */
+#ifdef HAVE_SYS_WAIT_H /* We have sys/wait.h with POSIXish definitions.  */
 #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