From 51fd87c344ae249b90734ab1cf42817778517b58 Mon Sep 17 00:00:00 2001 From: MuQun Yang Date: Fri, 12 Jan 2001 01:48:36 -0500 Subject: [svn-r3276] Purpose: windows bug fix Description: need extra header files for windows Solution: add #ifdef win32 #endif loops Platforms tested: windows 2000, confirmed at eirene --- tools/h5import.c | 3 +++ tools/h5repart.c | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/tools/h5import.c b/tools/h5import.c index 53fae0b..e896feb 100644 --- a/tools/h5import.c +++ b/tools/h5import.c @@ -26,6 +26,9 @@ # include #endif +#ifdef WIN32 +#include +#endif /*------------------------------------------------------------------------- diff --git a/tools/h5repart.c b/tools/h5repart.c index 6704f38..de7b3df 100644 --- a/tools/h5repart.c +++ b/tools/h5repart.c @@ -32,6 +32,10 @@ # include #endif +#ifdef WIN32 +#include +#endif + #ifndef FALSE #define FALSE 0 #endif -- cgit v0.12