diff options
author | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-07-16 20:57:15 +0000 |
---|---|---|
committer | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-07-16 20:57:15 +0000 |
commit | d353f773bab8c0f92e149a74400aa31b57da9d05 (patch) | |
tree | e8c416c791c690f661c513340662e4e98ff3464a /procps/kill.c | |
parent | 3ab1d8193e335afa74e86a8d8e628158d7e503b9 (diff) | |
download | busybox-w32-d353f773bab8c0f92e149a74400aa31b57da9d05.tar.gz busybox-w32-d353f773bab8c0f92e149a74400aa31b57da9d05.tar.bz2 busybox-w32-d353f773bab8c0f92e149a74400aa31b57da9d05.zip |
Extract usage information into a separate file.
git-svn-id: svn://busybox.net/trunk/busybox@864 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'procps/kill.c')
-rw-r--r-- | procps/kill.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/procps/kill.c b/procps/kill.c index 44cb38395..da46620dd 100644 --- a/procps/kill.c +++ b/procps/kill.c | |||
@@ -31,24 +31,6 @@ | |||
31 | #include <sys/stat.h> | 31 | #include <sys/stat.h> |
32 | #include <unistd.h> | 32 | #include <unistd.h> |
33 | 33 | ||
34 | static const char *kill_usage = | ||
35 | "kill [-signal] process-id [process-id ...]\n" | ||
36 | #ifndef BB_FEATURE_TRIVIAL_HELP | ||
37 | "\nSend a signal (default is SIGTERM) to the specified process(es).\n\n" | ||
38 | "Options:\n" "\t-l\tList all signal names and numbers.\n\n" | ||
39 | #endif | ||
40 | ; | ||
41 | |||
42 | #ifdef BB_KILLALL | ||
43 | static const char *killall_usage = | ||
44 | "killall [-signal] process-name [process-name ...]\n" | ||
45 | #ifndef BB_FEATURE_TRIVIAL_HELP | ||
46 | "\nSend a signal (default is SIGTERM) to the specified process(es).\n\n" | ||
47 | "Options:\n" "\t-l\tList all signal names and numbers.\n\n" | ||
48 | #endif | ||
49 | #endif | ||
50 | ; | ||
51 | |||
52 | #define KILL 0 | 34 | #define KILL 0 |
53 | #define KILLALL 1 | 35 | #define KILLALL 1 |
54 | 36 | ||