From: Jim Meyering Date: Sat, 18 Oct 2003 08:11:19 +0000 (+0000) Subject: (parse_long_options): Change prototype: the authors X-Git-Tag: v5.1.0~330 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33924e73065b1b42762e584c855726641bf82725;p=thirdparty%2Fcoreutils.git (parse_long_options): Change prototype: the authors string is moved to the end and becomes variadic. --- diff --git a/lib/long-options.h b/lib/long-options.h index e89b3512de..50f0c34e10 100644 --- a/lib/long-options.h +++ b/lib/long-options.h @@ -22,5 +22,5 @@ void parse_long_options (int _argc, const char *_command_name, const char *_package, const char *_version, - const char *_authors, - void (*_usage) (int)); + void (*_usage) (int), + /* const char *author1, ...*/ ...);