]> granicus.if.org Git - libevent/commitdiff
Fix consts in WIN32-Code/getopt*.[ch]
authorNick Mathewson <nickm@torproject.org>
Wed, 12 Mar 2014 18:06:41 +0000 (14:06 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 12 Mar 2014 18:06:41 +0000 (14:06 -0400)
WIN32-Code/getopt.h
WIN32-Code/getopt_long.c

index 7137f0379c4b4719d3f75cd77152f8aedd64757c..796f4550509d47a198c420513d190411138f0751 100644 (file)
@@ -23,8 +23,8 @@ struct option
 #define required_argument 1
 #define optional_argument 2
 
-int getopt(int, char**, char*);
-int getopt_long(int, char**, char*, struct option*, int*);
+int getopt(int, char**, const char*);
+int getopt_long(int, char**, const char*, const struct option*, int*);
 
 #ifdef __cplusplus
 }
index 8bbc2053a1e273b7148ea9573e532eb9d522a35f..03f0c01a15eccce5dad323ce25c8d58b736a99b3 100644 (file)
@@ -160,8 +160,8 @@ int
 getopt_long(nargc, nargv, options, long_options, index)
        int nargc;
        char ** nargv;
-       char * options;
-       struct option * long_options;
+       const char * options;
+       const struct option * long_options;
        int * index;
 {
        int retval;