summaryrefslogtreecommitdiff
path: root/src/kill.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2010-05-03 10:45:47 +0200
committerJim Meyering <meyering@redhat.com>2010-05-03 12:26:00 +0200
commita9c542e416ffcd29dbe44845197442cc550e5370 (patch)
treefc403f29390aa2e33170245cf004b06740aa082d /src/kill.c
parentd861519d2a3214df2b4cd2ee6d59e8772371f780 (diff)
downloadcoreutils-a9c542e416ffcd29dbe44845197442cc550e5370.tar.xz
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 <sys/wait.h>. * src/operand2sig.c: Likewise. * src/kill.c: Likewise.
Diffstat (limited to 'src/kill.c')
-rw-r--r--src/kill.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/kill.c b/src/kill.c
index 09d280822..4210c37b5 100644
--- a/src/kill.c
+++ b/src/kill.c
@@ -21,14 +21,7 @@
#include <getopt.h>
#include <sys/types.h>
#include <signal.h>
-
#include <sys/wait.h>
-#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"