Mercurial > emacs
comparison src/syswait.h @ 41185:d12c8d3334f4
Delete conditionals for HPUX7, ISC 4.1, and convex.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Sat, 17 Nov 2001 03:49:13 +0000 |
| parents | f1b3a7278c62 |
| children | 971ae7795f13 |
comparison
equal
deleted
inserted
replaced
| 41184:556de690adf1 | 41185:d12c8d3334f4 |
|---|---|
| 32 below. */ | 32 below. */ |
| 33 | 33 |
| 34 #if 1 | 34 #if 1 |
| 35 #include <sys/types.h> | 35 #include <sys/types.h> |
| 36 | 36 |
| 37 /* Old code included a comment that HPUX version 7 has broken | 37 #ifdef HAVE_SYS_WAIT_H /* We have sys/wait.h with POSIXoid definitions. */ |
| 38 definitions of some of the macros and `the convex' does too. | |
| 39 HAVE_SYS_WAIT_H probably won't be defined on them if they still get | |
| 40 used, but for safety... -- fx */ | |
| 41 /* ISC 4.1 doesn't have wait3, but does have sys/wait.h. */ | |
| 42 #if (defined(HPUX) && !defined(HPUX8)) || defined(convex) || defined(ISC4_1) | |
| 43 #undef HAVE_SYS_WAIT_H | |
| 44 #endif | |
| 45 | |
| 46 #if defined HAVE_SYS_WAIT_H /* We have sys/wait.h with POSIXoid | |
| 47 definitions. */ | |
| 48 | 38 |
| 49 #include <sys/wait.h> | 39 #include <sys/wait.h> |
| 50 #ifndef WCOREDUMP /* not POSIX */ | 40 #ifndef WCOREDUMP /* not POSIX */ |
| 51 #define WCOREDUMP(status) ((status) & 0x80) | 41 #define WCOREDUMP(status) ((status) & 0x80) |
| 52 #endif | 42 #endif |
