summaryrefslogtreecommitdiff
path: root/src/syswait.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-08-01 21:14:48 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2012-08-01 21:14:48 -0700
commit13294f95172c68a5e77143f917231e0f17f37537 (patch)
tree64d703087135fe71be44b267ca9d105ede888cc9 /src/syswait.h
parent90df0db330dc6d168bf8cdb950a066a2916857ad (diff)
downloademacs-13294f95172c68a5e77143f917231e0f17f37537.tar.gz
Port to Solaris 8.
Without this change, 'configure' fails because the recently-added wait3 prototype in config.h messes up later 'configure' tests. Fix this problem by droping wait3 and WRETCODE, as they're no longer needed on hosts that are current porting targets. * configure.ac (wait3, WRETCODE): Remove, fixing a FIXME. All uses changed to waitpid and WEXITSTATUS. * src/syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
Diffstat (limited to 'src/syswait.h')
-rw-r--r--src/syswait.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/syswait.h b/src/syswait.h
index aea9ea6e588..9d84876d4be 100644
--- a/src/syswait.h
+++ b/src/syswait.h
@@ -51,9 +51,4 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#define WTERMSIG(status) ((status) & 0x7f)
#endif
-#undef WRETCODE
-#define WRETCODE(status) WEXITSTATUS (status)
-
-
#endif /* EMACS_SYSWAIT_H */
-