WIFSIGNALED
#define WIFSIGNALED(x) ((x).w_stopval != WSTOPPED && (x).w_termsig != 0)
# undef WIFSIGNALED
#define WIFSIGNALED(stat) (WLOBYTE(stat) > 0 && WHIBYTE(stat) == 0)
#define WIFSIGNALED(stat) ((int)((stat)&0xFF) > 0 && \