X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=blobdiff_plain;f=src%2Frrd_getopt.c;h=5f938f398b691366fd2165c68d4e1b65c18297f4;hp=a74ff88de7a6bcc140c492cd2da5d5158414d471;hb=96b0f4aace0deef034a792a08dc2d426cd2b61a4;hpb=46a2db0465372eae273b1ff827e465a779339198 diff --git a/src/rrd_getopt.c b/src/rrd_getopt.c index a74ff88..5f938f3 100644 --- a/src/rrd_getopt.c +++ b/src/rrd_getopt.c @@ -360,7 +360,7 @@ static const char *_getopt_initialize( const char *); #endif static const char* _getopt_initialize(int argc, - char** argv, + char* const* argv, const char* optstring) { /* Start processing options with ARGV-element 1 (since ARGV-element 0 @@ -465,7 +465,11 @@ static const char* _getopt_initialize(int argc, long-named options. */ int _getopt_internal(int argc, +#ifdef WIN32 char** argv, +#else // WIN32 + char* const* argv, +#endif //WIN32 const char *optstring, const struct option *longopts, int* longind, @@ -869,15 +873,6 @@ int _getopt_internal(int argc, } } -int getopt( - int argc, - char** argv, - const char* optstring) -{ - return _getopt_internal(argc, argv, optstring, - (const struct option *) 0, (int *) 0, 0); -} - #endif /* Not ELIDE_CODE. */ #ifdef TEST