summaryrefslogtreecommitdiff
path: root/sysdeps/generic/waitstatus.h
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/generic/waitstatus.h')
-rw-r--r--sysdeps/generic/waitstatus.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/generic/waitstatus.h b/sysdeps/generic/waitstatus.h
index 5cd8b318bb..4fbcbe87aa 100644
--- a/sysdeps/generic/waitstatus.h
+++ b/sysdeps/generic/waitstatus.h
@@ -37,8 +37,8 @@
/* Nonzero if STATUS indicates termination by a signal. */
#ifdef __GNUC__
#define __WIFSIGNALED(status) \
- (__extension__ ({ int __stat = (status); \
- !__WIFSTOPPED(__stat) && !__WIFEXITED(__stat); }))
+ (__extension__ ({ int __status = (status); \
+ !__WIFSTOPPED(__status) && !__WIFEXITED(__status); }))
#else /* Not GCC. */
#define __WIFSIGNALED(status) (!__WIFSTOPPED(status) && !__WIFEXITED(status))
#endif /* GCC. */