From: H.G. Muller Date: Thu, 17 Feb 2011 14:40:02 +0000 (+0100) Subject: Fix MSVC snprintf problem X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=1905bc8511d3e2bed714c77c82dba7847cf05c30;p=xboard.git Fix MSVC snprintf problem In MSVC snprintf has to be redefined as _snprintf, and this happens conditionally in config.c. But the latter was not #included in help.c. --- diff --git a/winboard/help.c b/winboard/help.c index 8d8f252..71e0aae 100644 --- a/winboard/help.c +++ b/winboard/help.c @@ -24,6 +24,7 @@ #include #include +#include "config.h" #include "help.h" FILE *debugFP;