From 715d02cb31a0bf038288cd3a04372c959ea2648c Mon Sep 17 00:00:00 2001 From: divverent Date: Sat, 27 Feb 2010 15:09:43 +0000 Subject: [PATCH] attempt to fix the includes for win32 git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10019 d7cf8633-e32d-0410-b094-e92efae38249 --- sys_shared.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sys_shared.c b/sys_shared.c index c95612c4..4141ce2e 100644 --- a/sys_shared.c +++ b/sys_shared.c @@ -2,14 +2,16 @@ #define SUPPORTDLL -#ifndef WIN32 +#ifdef WIN32 +# include +#else # include # include # include # include -#ifdef SUPPORTDLL -# include -#endif +# ifdef SUPPORTDLL +# include +# endif #endif static char sys_timestring[128]; -- 2.39.2