Wrap a table (bg set to black, width=80%) around the screenshot
[oweals/busybox.git] / kill.c
diff --git a/kill.c b/kill.c
index 8fa9da77d278f1a598561fe826da4415ca5047f5..3eb829abf41372ebc86ba6bc55ed42242fd59bf5 100644 (file)
--- a/kill.c
+++ b/kill.c
 #include <unistd.h>
 #include <signal.h>
 #include <ctype.h>
+#include <string.h>
 #include <unistd.h>
 
-#define KILL   0
-#define KILLALL        1
+static const int KILL = 0;
+static const int KILLALL = 1;
 
 struct signal_name {
        const char *name;