Brand, new version of cut. This fixes the bugs in the old cut, is smaller, and
[oweals/busybox.git] / kill.c
diff --git a/kill.c b/kill.c
index 44cb38395fb4012dcd2a16fd9ef68b782f63bd00..da46620dd462ddb8fba6db92a391b7473e6f1fd4 100644 (file)
--- a/kill.c
+++ b/kill.c
 #include <sys/stat.h>
 #include <unistd.h>
 
-static const char *kill_usage =
-       "kill [-signal] process-id [process-id ...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSend a signal (default is SIGTERM) to the specified process(es).\n\n"
-       "Options:\n" "\t-l\tList all signal names and numbers.\n\n"
-#endif
-       ;
-
-#ifdef BB_KILLALL
-static const char *killall_usage =
-       "killall [-signal] process-name [process-name ...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSend a signal (default is SIGTERM) to the specified process(es).\n\n"
-       "Options:\n" "\t-l\tList all signal names and numbers.\n\n"
-#endif
-#endif
-       ;
-
 #define KILL   0
 #define KILLALL        1