From 0c38b37729906edfc1d6d14cfedbea65385085e2 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sun, 21 Feb 2016 19:51:30 +0000 Subject: [PATCH] wait.h: make clearer --- Library/include/sys/wait.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/include/sys/wait.h b/Library/include/sys/wait.h index 329b4724..8bd34fb1 100644 --- a/Library/include/sys/wait.h +++ b/Library/include/sys/wait.h @@ -28,7 +28,7 @@ #define WIFSTOPPED(status) (((status) & 0xff) == 0x7f) /* Nonzero if STATUS indicates the child dumped core. */ -#define WCOREDUMP(status) ((status) & 0200) +#define WCOREDUMP(status) ((status) & 0x80) /* Macros for constructing status values. */ #define W_EXITCODE(ret, sig) ((ret) << 8 | (sig)) -- 2.34.1