(svn r4203) - Fix compilation on mingw32 (stdint.h not included)
authororudge
Fri, 31 Mar 2006 15:34:22 +0000
changeset 3394 78963d9c1022
parent 3393 48ce4c723a76
child 3395 31eace25f169
(svn r4203) - Fix compilation on mingw32 (stdint.h not included)
win32.c
--- a/win32.c	Fri Mar 31 12:59:43 2006 +0000
+++ b/win32.c	Fri Mar 31 15:34:22 2006 +0000
@@ -26,6 +26,9 @@
 	#define __TIMESTAMP__   __DATE__ __TIME__
 #endif
 
+#if defined(__MINGW32__)
+	#include <stdint.h>
+#endif
 
 static bool cursor_visible = true;