diff options
| author | Richard M. Stallman | 1993-11-10 19:53:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-11-10 19:53:29 +0000 |
| commit | b01b093a01b49f9e529bbf0e76422b91cf9a4959 (patch) | |
| tree | 872fa27de1f4c71e696cb8446a27c738b971015a /src/syswait.h | |
| parent | 3acb9a699bb7f82f9ef553e5e8eec2b9cd658771 (diff) | |
| download | emacs-b01b093a01b49f9e529bbf0e76422b91cf9a4959.tar.gz emacs-b01b093a01b49f9e529bbf0e76422b91cf9a4959.zip | |
Treat convex like hpux.
Diffstat (limited to 'src/syswait.h')
| -rw-r--r-- | src/syswait.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/syswait.h b/src/syswait.h index 41214ea54cf..95bf5acdb39 100644 --- a/src/syswait.h +++ b/src/syswait.h | |||
| @@ -45,14 +45,15 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 45 | #define WRETCODE(w) w.w_retcode | 45 | #define WRETCODE(w) w.w_retcode |
| 46 | #define WCOREDUMP(w) w.w_coredump | 46 | #define WCOREDUMP(w) w.w_coredump |
| 47 | 47 | ||
| 48 | #ifdef HPUX | 48 | #if defined (HPUX) || defined (convex) |
| 49 | /* HPUX version 7 has broken definitions of these. */ | 49 | /* HPUX version 7 has broken definitions of these. */ |
| 50 | /* pvogel@convex.com says the convex does too. */ | ||
| 50 | #undef WTERMSIG | 51 | #undef WTERMSIG |
| 51 | #undef WSTOPSIG | 52 | #undef WSTOPSIG |
| 52 | #undef WIFSTOPPED | 53 | #undef WIFSTOPPED |
| 53 | #undef WIFSIGNALED | 54 | #undef WIFSIGNALED |
| 54 | #undef WIFEXITED | 55 | #undef WIFEXITED |
| 55 | #endif | 56 | #endif /* HPUX | convex */ |
| 56 | 57 | ||
| 57 | #ifndef WTERMSIG | 58 | #ifndef WTERMSIG |
| 58 | #define WTERMSIG(w) w.w_termsig | 59 | #define WTERMSIG(w) w.w_termsig |