From fa467d2f58e23d3293810bdc7151fa69e9cd00f4 Mon Sep 17 00:00:00 2001 From: orudge Date: Fri, 31 Mar 2006 15:34:22 +0000 Subject: [PATCH] (svn r4203) - Fix compilation on mingw32 (stdint.h not included) --- win32.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/win32.c b/win32.c index 6987ffcf2f..0a83c66fec 100644 --- a/win32.c +++ b/win32.c @@ -26,6 +26,9 @@ static bool _has_console; #define __TIMESTAMP__ __DATE__ __TIME__ #endif +#if defined(__MINGW32__) + #include +#endif static bool cursor_visible = true;