diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2000-11-29 20:04:32 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2000-11-29 20:04:32 (GMT) |
commit | c05f6477e0602d2dbccb215407b58b653d1f0fd5 (patch) | |
tree | 454b0f1bf41acbf8c1f67c67e9e14de6916d0ea4 /src/H5FDsec2.c | |
parent | c5cd064a8842be7d5369bd93f762d17f80ed44a9 (diff) | |
download | hdf5-c05f6477e0602d2dbccb215407b58b653d1f0fd5.zip hdf5-c05f6477e0602d2dbccb215407b58b653d1f0fd5.tar.gz hdf5-c05f6477e0602d2dbccb215407b58b653d1f0fd5.tar.bz2 |
[svn-r3024]
Purpose:
Fix a bug on windows
Description:
add windows.h for WIN32
Platforms tested:
windows NT5.0,4.0, eirene
Diffstat (limited to 'src/H5FDsec2.c')
-rw-r--r-- | src/H5FDsec2.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5FDsec2.c b/src/H5FDsec2.c index 7674e6d..91f3f6c 100644 --- a/src/H5FDsec2.c +++ b/src/H5FDsec2.c @@ -21,6 +21,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)) |