From 1905bc8511d3e2bed714c77c82dba7847cf05c30 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Thu, 17 Feb 2011 15:40:02 +0100 Subject: [PATCH] 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. --- winboard/help.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) 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; -- 1.7.0.4