From: Gisle Vanem Date: Tue, 2 Sep 2008 22:57:43 +0000 (-0700) Subject: Ensure stdio.h is included. X-Git-Tag: v1.13~408 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=8216f0acc5e257b5f80f8b8d6ee25bb5342bddfe Ensure stdio.h is included. --- diff --git a/src/ChangeLog b/src/ChangeLog index 8acab925..9aab3a4b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2008-09-02 Gisle Vanem + + * mswindows.h: Must ensure is included before + we redefine ?vsnprintf(). + 2008-08-08 Steven Schubiger * main.c, utils.h: Removed some dead conditional DEBUG_MALLOC code. diff --git a/src/mswindows.h b/src/mswindows.h index 54821a7c..71687278 100644 --- a/src/mswindows.h +++ b/src/mswindows.h @@ -78,6 +78,8 @@ as that of the covered work. */ # define strncasecmp strnicmp #endif +#include + /* The same for snprintf() and vsnprintf(). */ #define snprintf _snprintf #define vsnprintf _vsnprintf