Displaying 1 result from an estimated 1 matches for "have_c99_snprintf".
Did you mean:
have_c99_vsnprintf
2003 Jun 25
2
snprintf, vsnprintf
...ed which is
in many other places, but I'm sure there are reaasons.
The other thing is there is a check at the beginning for HAVE_SNPRINTF,
HAVE_VSNPRINTF and HAVE_C99_VSNPRINTF to include stdio.h - that one i
get. the one i don't get is at line 790:
#if !defined(HAVE_SNPRINTF) || !defined(HAVE_C99_SNPRINTF)
i can't find a HAVE_C99_SNPRINTF anywhere in configure unless it's under
another name, but it seems to me based on the description given by
"mbp" in the code that it may need to look like this:
#if !defined(HAVE_SNPRINTF) || !defined(HAVE_SNPRINTF_DECL)
anyway the bug i'...