diff options
author | markw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-10-19 22:28:06 +0000 |
---|---|---|
committer | markw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-10-19 22:28:06 +0000 |
commit | df8b3de794a9ffc5ab738115cee06a6267143014 (patch) | |
tree | 5818d62ef16fefe16ea1b4e412ad06a50c87f599 /busybox.c | |
parent | cd4b2a8d2251b1e03f66fce0d0fa683d1057c3b2 (diff) | |
download | busybox-w32-df8b3de794a9ffc5ab738115cee06a6267143014.tar.gz busybox-w32-df8b3de794a9ffc5ab738115cee06a6267143014.tar.bz2 busybox-w32-df8b3de794a9ffc5ab738115cee06a6267143014.zip |
Put getopt_usage where it belongs and added *_usage entries in busybox.[ch]
git-svn-id: svn://busybox.net/trunk/busybox@1206 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'busybox.c')
-rw-r--r-- | busybox.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -110,7 +110,7 @@ const struct BB_applet applets[] = { | |||
110 | {"fsck.minix", fsck_minix_main, _BB_DIR_SBIN, fsck_minix_usage}, | 110 | {"fsck.minix", fsck_minix_main, _BB_DIR_SBIN, fsck_minix_usage}, |
111 | #endif | 111 | #endif |
112 | #ifdef BB_GETOPT | 112 | #ifdef BB_GETOPT |
113 | {"getopt", getopt_main, _BB_DIR_BIN}, | 113 | {"getopt", getopt_main, _BB_DIR_BIN, getopt_usage}, |
114 | #endif | 114 | #endif |
115 | #ifdef BB_GREP | 115 | #ifdef BB_GREP |
116 | {"grep", grep_main, _BB_DIR_BIN, grep_usage}, | 116 | {"grep", grep_main, _BB_DIR_BIN, grep_usage}, |
@@ -245,7 +245,7 @@ const struct BB_applet applets[] = { | |||
245 | {"reboot", reboot_main, _BB_DIR_SBIN, reboot_usage}, | 245 | {"reboot", reboot_main, _BB_DIR_SBIN, reboot_usage}, |
246 | #endif | 246 | #endif |
247 | #ifdef BB_RENICE | 247 | #ifdef BB_RENICE |
248 | {"renice", renice_main, _BB_DIR_USR_BIN}, | 248 | {"renice", renice_main, _BB_DIR_USR_BIN, renice_usage}, |
249 | #endif | 249 | #endif |
250 | #ifdef BB_RESET | 250 | #ifdef BB_RESET |
251 | {"reset", reset_main, _BB_DIR_USR_BIN, reset_usage}, | 251 | {"reset", reset_main, _BB_DIR_USR_BIN, reset_usage}, |