diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-09-17 03:43:54 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-09-17 03:43:54 +0000 |
commit | d551a99803373a70cf1f68db2634f03d741490ae (patch) | |
tree | 66bfbb2e565882d1d961305a3ab4f4e11be0bece /src/syswait.h | |
parent | 6fa8ce29980d4531cb87de78e7e07f5d053780fb (diff) | |
download | emacs-d551a99803373a70cf1f68db2634f03d741490ae.tar.gz |
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. */ #else /* not WAIT_USE_INT */ -#if (!defined (BSD) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER)) +#if (!defined (BSD_SYSTEM) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER)) #define WAITTYPE int #define WIFSTOPPED(w) ((w&0377) == 0177) #define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0) @@ -84,7 +84,7 @@ Boston, MA 02111-1307, USA. */ #ifndef WIFEXITED #define WIFEXITED(w) (WTERMSIG (w) == 0) #endif -#endif /* BSD or UNIPLUS or STRIDE */ +#endif /* BSD_SYSTEM || UNIPLUS || STRIDE || HPUX */ #endif /* not WAIT_USE_INT */ #endif /* no WAITTYPE */ |