diff options
| author | Karl Heuer | 1996-09-17 03:43:54 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-09-17 03:43:54 +0000 |
| commit | 6df54671fdbe53113164ffed5b36fa2a83ae85e0 (patch) | |
| tree | d4aeca53aa080087d8cdf29b430bef944b897e43 /src/syswait.h | |
| parent | 488b7cb38fdeb47e67b0f6e8edd10e01cbc55595 (diff) | |
| download | emacs-6df54671fdbe53113164ffed5b36fa2a83ae85e0.tar.gz emacs-6df54671fdbe53113164ffed5b36fa2a83ae85e0.zip | |
Replaced symbol BSD with BSD_SYSTEM.
Diffstat (limited to 'src/syswait.h')
| -rw-r--r-- | src/syswait.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syswait.h b/src/syswait.h index 7127b3966ce..1889c36a32e 100644 --- a/src/syswait.h +++ b/src/syswait.h | |||
| @@ -34,7 +34,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 34 | 34 | ||
| 35 | #else /* not WAIT_USE_INT */ | 35 | #else /* not WAIT_USE_INT */ |
| 36 | 36 | ||
| 37 | #if (!defined (BSD) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER)) | 37 | #if (!defined (BSD_SYSTEM) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER)) |
| 38 | #define WAITTYPE int | 38 | #define WAITTYPE int |
| 39 | #define WIFSTOPPED(w) ((w&0377) == 0177) | 39 | #define WIFSTOPPED(w) ((w&0377) == 0177) |
| 40 | #define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0) | 40 | #define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0) |
| @@ -84,7 +84,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 84 | #ifndef WIFEXITED | 84 | #ifndef WIFEXITED |
| 85 | #define WIFEXITED(w) (WTERMSIG (w) == 0) | 85 | #define WIFEXITED(w) (WTERMSIG (w) == 0) |
| 86 | #endif | 86 | #endif |
| 87 | #endif /* BSD or UNIPLUS or STRIDE */ | 87 | #endif /* BSD_SYSTEM || UNIPLUS || STRIDE || HPUX */ |
| 88 | #endif /* not WAIT_USE_INT */ | 88 | #endif /* not WAIT_USE_INT */ |
| 89 | #endif /* no WAITTYPE */ | 89 | #endif /* no WAITTYPE */ |
| 90 | 90 | ||