diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2001-07-03 16:00:17 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2001-07-03 16:00:17 (GMT) |
commit | d66d9f9218fa582aa2e373bf4fed1715b6a2b4ee (patch) | |
tree | b6b878ce3cbe1f045bb808da400425b98194ca8a /src/H5FDstdio.c | |
parent | d096777503bf2ff5162b649c109f976bb82edc26 (diff) | |
download | hdf5-d66d9f9218fa582aa2e373bf4fed1715b6a2b4ee.zip hdf5-d66d9f9218fa582aa2e373bf4fed1715b6a2b4ee.tar.gz hdf5-d66d9f9218fa582aa2e373bf4fed1715b6a2b4ee.tar.bz2 |
[svn-r4100]
Purpose
code warrior changes
:
Description:
moved some ifdefs
the type off_t was removed from H5private.h and put on H5Public.h
Metrowerks does not define this type, it was defined
Solution:
Platforms tested:
solaris (arabica), linux (eirene)+
Diffstat (limited to 'src/H5FDstdio.c')
-rw-r--r-- | src/H5FDstdio.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/H5FDstdio.c b/src/H5FDstdio.c index 3ed0181..bbe7970 100644 --- a/src/H5FDstdio.c +++ b/src/H5FDstdio.c @@ -21,6 +21,17 @@ #include "hdf5.h" + + +#ifdef WIN32 +#if !defined(_68K_) && !defined(_MPPC_) && !defined(_PPC_) && !defined(_ALPHA_) && !defined(_MIPS_) && !defined(_X86_) && defined(_M_IX86) +#define _X86_ +#endif +#include <windef.h> +#include <winbase.h> +#include <io.h> +#endif + #ifdef MAX #undef MAX #endif /* MAX */ |