From d402c39e9d0c7cb87f550a2e3ac6dc074b528a17 Mon Sep 17 00:00:00 2001 From: Evan Martin Date: Sun, 1 May 2011 20:08:01 -0700 Subject: windows: getopt const clean hack --- src/getopt.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/getopt.h b/src/getopt.h index 49a107e..20a7dc7 100644 --- a/src/getopt.h +++ b/src/getopt.h @@ -13,7 +13,7 @@ /* GETOPT_LONG_OPTION_T: The type of long option */ typedef struct GETOPT_LONG_OPTION_T { - char *name; /* the name of the long option */ + const char *name; /* the name of the long option */ int has_arg; /* one of the above macros */ int *flag; /* determines if getopt_long() returns a * value for a long option; if it is @@ -40,9 +40,9 @@ extern "C" /* function prototypes */ int getopt (int argc, char **argv, char *optstring); - int getopt_long (int argc, char **argv, char *shortopts, + int getopt_long (int argc, char **argv, const char *shortopts, GETOPT_LONG_OPTION_T * longopts, int *longind); - int getopt_long_only (int argc, char **argv, char *shortopts, + int getopt_long_only (int argc, char **argv, const char *shortopts, GETOPT_LONG_OPTION_T * longopts, int *longind); #ifdef __cplusplus -- cgit v0.12