From: Joel Rosdahl Date: Sun, 30 May 2010 13:14:10 +0000 (+0200) Subject: Include stdio.h when checking for vsnprintf support X-Git-Tag: v3.0~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fbaf70012b34c8d9673fe6705cd52c09b517d85d;p=thirdparty%2Fccache.git Include stdio.h when checking for vsnprintf support --- diff --git a/configure.ac b/configure.ac index 5ebf71d08..965c8d039 100644 --- a/configure.ac +++ b/configure.ac @@ -205,6 +205,7 @@ AC_CACHE_CHECK([for C99 vsnprintf],ccache_cv_HAVE_C99_VSNPRINTF,[ AC_TRY_RUN([ #include #include +#include void foo(const char *format, ...) { va_list ap; int len;