summaryrefslogtreecommitdiffstats
path: root/src/H5FDlog.c
diff options
context:
space:
mode:
authorMuQun Yang <ymuqun@hdfgroup.org>2000-11-29 20:06:33 (GMT)
committerMuQun Yang <ymuqun@hdfgroup.org>2000-11-29 20:06:33 (GMT)
commit1424415b7dd5de2cc8f01d8e3a8b4d2bed991d5b (patch)
tree66854db046dfc6e2581b997453b8209a5398a7d5 /src/H5FDlog.c
parentc05f6477e0602d2dbccb215407b58b653d1f0fd5 (diff)
downloadhdf5-1424415b7dd5de2cc8f01d8e3a8b4d2bed991d5b.zip
hdf5-1424415b7dd5de2cc8f01d8e3a8b4d2bed991d5b.tar.gz
hdf5-1424415b7dd5de2cc8f01d8e3a8b4d2bed991d5b.tar.bz2
[svn-r3025]
Purpose: fix a bug Description: add <windows.h> for WIN32 Solution: Add the following lines at the beginning of the file #ifdef WIN32 #include <windows.h> #endif Platforms tested: NT4.0,5.0, and LINUX
Diffstat (limited to 'src/H5FDlog.c')
-rw-r--r--src/H5FDlog.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5FDlog.c b/src/H5FDlog.c
index 8913cf9..195e34c 100644
--- a/src/H5FDlog.c
+++ b/src/H5FDlog.c
@@ -23,6 +23,10 @@
#include <H5MMprivate.h> /* Memory allocation */
#include <H5Pprivate.h> /*property lists */
+#ifdef WIN32
+#include <windows.h>
+#endif
+
#ifdef MAX
#undef MAX
#define MAX(X,Y) ((X)>(Y)?(X):(Y))