# HG changeset patch # User diego # Date 1262642233 0 # Node ID c02b833051a7e244652f43b836736a61e8e818a2 # Parent 6fb92182aff3dfbd48b220e17674b3340e38c100 Pass a proper va_list type to vsscanf() test in configure. This fixes the check on SuperH with CodeSourcery compilers. patch by Bill Traynor, wmat naoi ca diff -r 6fb92182aff3 -r c02b833051a7 configure --- a/configure Mon Jan 04 21:38:45 2010 +0000 +++ b/configure Mon Jan 04 21:57:13 2010 +0000 @@ -3745,7 +3745,7 @@ #define _ISOC99_SOURCE #include #include -int main(void) { vsscanf(0, 0, 0); return 0; } +int main(void) { va_list ap; vsscanf(0, 0, ap); return 0; } EOF _vsscanf=no cc_check && _vsscanf=yes