From 0910a33c735effd07fd02b06ab4527fbab74923b Mon Sep 17 00:00:00 2001 From: William Kendrick Date: Tue, 14 Sep 2004 07:57:01 +0000 Subject: [PATCH] Added missing wctype.h include --- src/tuxpaint.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index 0940a6a92..92a37d62b 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -26,7 +26,7 @@ #define VER_VERSION "0.9.14" -#define VER_DATE "2004-09-13" +#define VER_DATE "2004-09-14" /* #define DEBUG */ @@ -73,6 +73,10 @@ #include #include +#ifndef OLD_UPPERCASE_CODE +#include +#endif + #ifdef WIN32_OLD /* The following are required by libintl.h, so must be defined first: */ #define LC_MESSAGES 1729