Add errno.h
[oweals/busybox.git] / kill.c
diff --git a/kill.c b/kill.c
index 8fa9da77d278f1a598561fe826da4415ca5047f5..19ca187a758e275c1accb5dcbce695ed27dc0e0b 100644 (file)
--- a/kill.c
+++ b/kill.c
@@ -30,8 +30,8 @@
 #include <ctype.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;