changeset 5430:54760e095396

(getopt_long, _getopt_long_r, getopt_long_only, _getopt_long_only_r): Use __getopt_argv_const.
author Paul Eggert <eggert@cs.ucla.edu>
date Thu, 11 Nov 2004 21:16:03 +0000
parents 1b54fe747ab9
children 1c7efeb240c3
files lib/getopt1.c
diffstat 1 files changed, 6 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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 @@
    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)
 {