summaryrefslogtreecommitdiff
path: root/src/syswait.h
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1994-02-20 19:34:12 +0000
committerRoland McGrath <roland@gnu.org>1994-02-20 19:34:12 +0000
commitfaf1591fa0a96915074264a50bbf08fdb8281e6c (patch)
treee1be964e43819d1e1ac16edc32a16844528a1cb7 /src/syswait.h
parentfd109d632383c18aa5990ca5b7b921ddef683ff6 (diff)
downloademacs-faf1591fa0a96915074264a50bbf08fdb8281e6c.tar.gz
[BSD]: #undef WCOREDUMP before defining it.
Diffstat (limited to 'src/syswait.h')
-rw-r--r--src/syswait.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/syswait.h b/src/syswait.h
index 95bf5acdb39..3bc1ec7aa97 100644
--- a/src/syswait.h
+++ b/src/syswait.h
@@ -1,5 +1,5 @@
/* Define wait system call interface for Emacs.
- Copyright (C) 1993 Free Software Foundation, Inc.
+ Copyright (C) 1993, 1994 Free Software Foundation, Inc.
This file is part of GNU Emacs.
@@ -43,6 +43,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define WAITTYPE union wait
#define WRETCODE(w) w.w_retcode
+#undef WCOREDUMP /* Later BSDs define this name differently. */
#define WCOREDUMP(w) w.w_coredump
#if defined (HPUX) || defined (convex)