From a9c542e416ffcd29dbe44845197442cc550e5370 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 3 May 2010 10:45:47 +0200 Subject: [PATCH] maint: remove now-redundant definitions provided by sys/wait.h * src/timeout.c (WIFSIGNALED, WTERMSIG): Remove definitions, now that gnulib guarantees they are defined in . * src/operand2sig.c: Likewise. * src/kill.c: Likewise. --- src/kill.c | 7 ------- src/operand2sig.c | 7 ------- src/timeout.c | 7 ------- 3 files changed, 21 deletions(-) diff --git a/src/kill.c b/src/kill.c index 09d2808..4210c37 100644 --- a/src/kill.c +++ b/src/kill.c @@ -21,14 +21,7 @@ #include #include #include - #include -#ifndef WIFSIGNALED -# define WIFSIGNALED(s) (((s) & 0xFFFF) - 1 < (unsigned int) 0xFF) -#endif -#ifndef WTERMSIG -# define WTERMSIG(s) ((s) & 0x7F) -#endif #include "system.h" #include "error.h" diff --git a/src/operand2sig.c b/src/operand2sig.c index d0500cd..8c1e780 100644 --- a/src/operand2sig.c +++ b/src/operand2sig.c @@ -24,14 +24,7 @@ #include #include #include - #include -#ifndef WIFSIGNALED -# define WIFSIGNALED(s) (((s) & 0xFFFF) - 1 < (unsigned int) 0xFF) -#endif -#ifndef WTERMSIG -# define WTERMSIG(s) ((s) & 0x7F) -#endif #include "system.h" #include "error.h" diff --git a/src/timeout.c b/src/timeout.c index c6f6525..e2234c3 100644 --- a/src/timeout.c +++ b/src/timeout.c @@ -51,13 +51,6 @@ #include #include -#ifndef WIFSIGNALED -# define WIFSIGNALED(s) (((s) & 0xFFFF) - 1 < (unsigned int) 0xFF) -#endif -#ifndef WTERMSIG -# define WTERMSIG(s) ((s) & 0x7F) -#endif - #include "system.h" #include "xstrtol.h" #include "sig2str.h" -- 2.7.4