aboutsummaryrefslogtreecommitdiff
path: root/util-linux/getopt.c
diff options
context:
space:
mode:
authorMark Whitley <markw@lineo.com>2000-10-19 22:28:06 +0000
committerMark Whitley <markw@lineo.com>2000-10-19 22:28:06 +0000
commit6050618096ab058d29264a6d6b604275b44121bb (patch)
tree5818d62ef16fefe16ea1b4e412ad06a50c87f599 /util-linux/getopt.c
parent69229a6c92a2d73bcee7c06eb79bd0a4f40d4e16 (diff)
downloadbusybox-6050618096ab058d29264a6d6b604275b44121bb.tar.gz
Put getopt_usage where it belongs and added *_usage entries in busybox.[ch]
Diffstat (limited to 'util-linux/getopt.c')
-rw-r--r--util-linux/getopt.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/util-linux/getopt.c b/util-linux/getopt.c
index 919ae6c68..8c94bb4c1 100644
--- a/util-linux/getopt.c
+++ b/util-linux/getopt.c
@@ -306,22 +306,6 @@ static struct option longopts[]=
/* Stop scanning as soon as a non-option argument is found! */
static const char *shortopts="+ao:l:n:qQs:Tu";
-static const char getopt_usage[] =
-"getopt [OPTIONS]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-"Parse command options\n"
-" -a, --alternative Allow long options starting with single -\n"
-" -l, --longoptions=longopts Long options to be recognized\n"
-" -n, --name=progname The name under which errors are reported\n"
-" -o, --options=optstring Short options to be recognized\n"
-" -q, --quiet Disable error reporting by getopt(3)\n"
-" -Q, --quiet-output No normal output\n"
-" -s, --shell=shell Set shell quoting conventions\n"
-" -T, --test Test for getopt(1) version\n"
-" -u, --unqote Do not quote the output\n"
-#endif
-;
-
int getopt_main(int argc, char *argv[])
{