aboutsummaryrefslogtreecommitdiffstats
path: root/src/syswait.h
diff options
context:
space:
mode:
authorRoland McGrath1994-02-20 19:34:12 +0000
committerRoland McGrath1994-02-20 19:34:12 +0000
commit4f480b74d7fe183bc55103eaa73541f59a8413eb (patch)
tree9cbdf24cf7649827ad8e7a56977f50b8c71e9071 /src/syswait.h
parente27fc6d3d3e0375f47789c22691d5094d6887f5a (diff)
downloademacs-4f480b74d7fe183bc55103eaa73541f59a8413eb.tar.gz
emacs-4f480b74d7fe183bc55103eaa73541f59a8413eb.zip
[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 @@
1/* Define wait system call interface for Emacs. 1/* Define wait system call interface for Emacs.
2 Copyright (C) 1993 Free Software Foundation, Inc. 2 Copyright (C) 1993, 1994 Free Software Foundation, Inc.
3 3
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
5 5
@@ -43,6 +43,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
43 43
44#define WAITTYPE union wait 44#define WAITTYPE union wait
45#define WRETCODE(w) w.w_retcode 45#define WRETCODE(w) w.w_retcode
46#undef WCOREDUMP /* Later BSDs define this name differently. */
46#define WCOREDUMP(w) w.w_coredump 47#define WCOREDUMP(w) w.w_coredump
47 48
48#if defined (HPUX) || defined (convex) 49#if defined (HPUX) || defined (convex)