Bruno Haible <[EMAIL PROTECTED]> writes: > * lib/argp.h (argp_parse, __argp_parse): Use _argc, _argv as argument > names, not __argc, __argv. (The latter are defined as macros on mingw.)
glibc headers must also be robust against user code that does "#define _argc some_weird_macro" as well. This is because the C standard reserves single-underscore identifiers like _argc only for use as identifiers with file scope in the ordinary and tag name spaces. I suppose you can use /*argc*/ instead....
