Copyright, help text, whitespace cleanups

This commit is contained in:
Denis Vlasenko
2007-04-01 09:39:03 +00:00
parent 2856dab477
commit ba2fb719b9
4 changed files with 71 additions and 41 deletions

View File

@@ -23,14 +23,14 @@ int dumpleases_main(int argc, char *argv[])
OPT_r = 0x2, // -r
OPT_f = 0x4, // -f
};
#if ENABLE_GETOPT_LONG
#if ENABLE_GETOPT_LONG
static const struct option options[] = {
{ "absolute", no_argument, 0, 'a' },
{ "remaining", no_argument, 0, 'r' },
{ "file", required_argument, 0, 'f' },
{ NULL, 0, 0, 0 }
};
applet_long_options = options;
#endif
opt_complementary = "=0:?:a--r:r--a";