From 61fa70ac19d9202f6509e97e4bda1f4ab8f5d1fd Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 4 Mar 1999 05:09:05 +0000 Subject: Include long-options.h [long_options]: Remove the "help" and "version" entries. (main): Use parse_long_options, including author name(s). Remove the show_version and show_help blocks. --- src/rmdir.c | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) (limited to 'src/rmdir.c') diff --git a/src/rmdir.c b/src/rmdir.c index 705048428..81e437e9f 100644 --- a/src/rmdir.c +++ b/src/rmdir.c @@ -30,6 +30,7 @@ #include "system.h" #include "closeout.h" #include "error.h" +#include "long-options.h" #ifndef EEXIST # define EEXIST 0 @@ -54,12 +55,6 @@ static int ignore_fail_on_non_empty; /* If nonzero, output a diagnostic for every directory processed. */ static int verbose; -/* If nonzero, display usage information and exit. */ -static int show_help; - -/* If nonzero, print the version on standard output and exit. */ -static int show_version; - static struct option const longopts[] = { /* Don't name this `--force' because it's not close enough in meaning @@ -69,8 +64,6 @@ static struct option const longopts[] = {"path", no_argument, NULL, 'p'}, {"parents", no_argument, NULL, 'p'}, {"verbose", no_argument, NULL, 14}, - {"help", no_argument, &show_help, 1}, - {"version", no_argument, &show_version, 1}, {NULL, 0, NULL, 0} }; @@ -152,6 +145,9 @@ main (int argc, char **argv) bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); + parse_long_options (argc, argv, "rmdir", GNU_PACKAGE, VERSION, + "David MacKenzie", usage); + empty_paths = 0; while ((optc = getopt_long (argc, argv, "p", longopts, NULL)) != -1) @@ -174,16 +170,6 @@ main (int argc, char **argv) } } - if (show_version) - { - printf ("rmdir (%s) %s\n", GNU_PACKAGE, VERSION); - close_stdout (); - exit (0); - } - - if (show_help) - usage (0); - if (optind == argc) { error (0, 0, _("too few arguments")); -- cgit v1.2.3-54-g00ecf