summaryrefslogtreecommitdiff
path: root/src/sys/wait/WIFSIGNALED.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/wait/WIFSIGNALED.c')
-rw-r--r--src/sys/wait/WIFSIGNALED.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sys/wait/WIFSIGNALED.c b/src/sys/wait/WIFSIGNALED.c
index cc99a98a..4c3305b9 100644
--- a/src/sys/wait/WIFSIGNALED.c
+++ b/src/sys/wait/WIFSIGNALED.c
@@ -1,6 +1,5 @@
#include <sys/wait.h>
-
-#define WIFSIGNALED 3
+#define WIFSIGNALED(__stat_val) (__stat_val & 0x100)
/*
POSIX(1)
*/