From 8823661b1f7f3e9c98fa522066e06ea0506707f3 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 30 Mar 2007 06:30:14 +0000 Subject: [PATCH] Merged r2999:3000 from branches/SDL-1.2: Visual Studio compilation fix. --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402291 --- test/testfile.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/testfile.c b/test/testfile.c index 0be8c404d..1892aee3f 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"