X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Frrd_getopt.c;h=0556c86a82602e2a3ea5c413d4e17cbd56a8a181;hb=c6824ca3f64bd2945fa4b6a772ae5322949d399f;hp=f973471c0f016e3c11da534f6a22969c300260d1;hpb=1287bb0b2b8677c7206f3100676372043a54084c;p=rrdtool.git diff --git a/src/rrd_getopt.c b/src/rrd_getopt.c index f973471..0556c86 100644 --- a/src/rrd_getopt.c +++ b/src/rrd_getopt.c @@ -274,7 +274,8 @@ static char *const *original_argv; to getopt is that one passed to the process. */ static void store_args( int argc, - char *const *argv) __attribute__ ((unused)); + char *const *argv); + static void store_args( int argc, char *const *argv) @@ -359,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 @@ -464,7 +465,7 @@ static const char* _getopt_initialize(int argc, long-named options. */ int _getopt_internal(int argc, - char** argv, + char* const* argv, const char *optstring, const struct option *longopts, int* longind, @@ -868,15 +869,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