diff options
author | Matt Kraai | 2000-07-16 20:57:15 +0000 |
---|---|---|
committer | Matt Kraai | 2000-07-16 20:57:15 +0000 |
commit | bf181b9338152759fd56c8009e9a962a84808e7c (patch) | |
tree | e8c416c791c690f661c513340662e4e98ff3464a /kill.c | |
parent | 3bd8bd89ee9d0b65bf279e1ecad826a5f2f0a217 (diff) | |
download | busybox-bf181b9338152759fd56c8009e9a962a84808e7c.zip busybox-bf181b9338152759fd56c8009e9a962a84808e7c.tar.gz |
Extract usage information into a separate file.
Diffstat (limited to 'kill.c')
-rw-r--r-- | kill.c | 18 |
1 files changed, 0 insertions, 18 deletions
@@ -31,24 +31,6 @@ #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 |