diff options
| author | Richard M. Stallman | 1996-04-12 06:06:34 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-04-12 06:06:34 +0000 |
| commit | 14206c20d21d0c45295d6936fa99b98c5bba5abc (patch) | |
| tree | 10cea33312473a9b3f3a5064a1329b072dac6534 /src/syswait.h | |
| parent | 8748735b9ee3e3144ab5b52af74d0b360d6ab1d8 (diff) | |
| download | emacs-14206c20d21d0c45295d6936fa99b98c5bba5abc.tar.gz emacs-14206c20d21d0c45295d6936fa99b98c5bba5abc.zip | |
Remove `|| defined (LINUX)' from #if condition.
Diffstat (limited to 'src/syswait.h')
| -rw-r--r-- | src/syswait.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syswait.h b/src/syswait.h index 089aab9c093..7127b3966ce 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)) || defined (LINUX) | 37 | #if (!defined (BSD) && !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) |