From bb80ed7b35908700f5ca59dc7ddc0506f9d03f7c Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 11 Nov 2004 21:16:03 +0000 Subject: [PATCH] (getopt_long, _getopt_long_r, getopt_long_only, _getopt_long_only_r): Use __getopt_argv_const. --- lib/getopt1.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/getopt1.c b/lib/getopt1.c index 706f59c083..a6fdee5a57 100644 --- a/lib/getopt1.c +++ b/lib/getopt1.c @@ -41,14 +41,14 @@ #endif int -getopt_long (int argc, char *const *argv, const char *options, +getopt_long (int argc, char *__getopt_argv_const *argv, const char *options, const struct option *long_options, int *opt_index) { return _getopt_internal (argc, argv, options, long_options, opt_index, 0); } int -_getopt_long_r (int argc, char *const *argv, const char *options, +_getopt_long_r (int argc, char *__getopt_argv_const *argv, const char *options, const struct option *long_options, int *opt_index, struct _getopt_data *d) { @@ -62,14 +62,16 @@ _getopt_long_r (int argc, char *const *argv, const char *options, instead. */ int -getopt_long_only (int argc, char *const *argv, const char *options, +getopt_long_only (int argc, char *__getopt_argv_const *argv, + const char *options, const struct option *long_options, int *opt_index) { return _getopt_internal (argc, argv, options, long_options, opt_index, 1); } int -_getopt_long_only_r (int argc, char *const *argv, const char *options, +_getopt_long_only_r (int argc, char *__getopt_argv_const *argv, + const char *options, const struct option *long_options, int *opt_index, struct _getopt_data *d) { -- 2.30.2