From 0c46f9ee2afa51328c6c7088811da3410c3cc8a9 Mon Sep 17 00:00:00 2001 From: olsner Date: Fri, 9 Apr 2004 12:39:55 +0000 Subject: [PATCH] Added _WIN32 ifdefs, linux compat This was SVN commit r199. --- source/lib/sysdep/sysdep.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/lib/sysdep/sysdep.h b/source/lib/sysdep/sysdep.h index bb37b1f2c8..46434ade39 100755 --- a/source/lib/sysdep/sysdep.h +++ b/source/lib/sysdep/sysdep.h @@ -1,7 +1,9 @@ #ifndef SYSDEP_H__ #define SYSDEP_H__ +#ifdef _WIN32 #include "win/win.h" +#endif #ifdef __cplusplus extern "C" { @@ -16,4 +18,4 @@ extern void check_heap(); } #endif -#endif // #ifndef SYSDEP_H__ \ No newline at end of file +#endif // #ifndef SYSDEP_H__