Mercurial > emacs
comparison src/syswait.h @ 15000:90dc2b5d32c4
Remove `|| defined (LINUX)' from #if condition.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Fri, 12 Apr 1996 06:06:34 +0000 |
| parents | ee40177f6c68 |
| children | 02044b05d8e0 |
comparison
equal
deleted
inserted
replaced
| 14999:3bafb8029b86 | 15000:90dc2b5d32c4 |
|---|---|
| 32 #define WAITTYPE int | 32 #define WAITTYPE int |
| 33 #define WRETCODE(w) WEXITSTATUS (w) | 33 #define WRETCODE(w) WEXITSTATUS (w) |
| 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) |
| 41 #define WIFEXITED(w) ((w&0377) == 0) | 41 #define WIFEXITED(w) ((w&0377) == 0) |
| 42 #define WRETCODE(w) (w >> 8) | 42 #define WRETCODE(w) (w >> 8) |
