From 7603e2bb846f31a5ff4e7ed6ecb87cd97259bd9f Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 30 Mar 2007 06:26:28 +0000 Subject: [PATCH] Patched to compile on Visual Studio. --HG-- branch : SDL-1.2 --- test/testfile.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/testfile.c b/test/testfile.c index 3e902ee0d..ecebb7d49 100644 --- a/test/testfile.c +++ b/test/testfile.c @@ -2,7 +2,10 @@ /* sanity tests on SDL_rwops.c (usefull for alternative implementations of stdio rwops) */ #include + +#ifndef _MSC_VER #include +#endif #include "SDL.h" #include "SDL_endian.h"