diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2001-01-03 23:41:45 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2001-01-03 23:41:45 (GMT) |
commit | d3301180f53714fb1bda0856ccfe5db15d0c0260 (patch) | |
tree | 96c4ed72712c8615ba3e28db23d9a0b7053bc981 | |
parent | 84143803b2cfc459a785e34563f984f19cb19708 (diff) | |
download | hdf5-d3301180f53714fb1bda0856ccfe5db15d0c0260.zip hdf5-d3301180f53714fb1bda0856ccfe5db15d0c0260.tar.gz hdf5-d3301180f53714fb1bda0856ccfe5db15d0c0260.tar.bz2 |
[svn-r3234]
Purpose:
a bug fix
Description:
without explicitly including stdio.h in this file, it will fail in compiling
at the first time of building up the library. It needs to be recompiled separetely. Now it can work. The real reason is to be investigated.
Solution:
adding include <stdio.h> for win32.
Platforms tested:
win 2000
-rw-r--r-- | test/tvlstr.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/tvlstr.c b/test/tvlstr.c index b41b82f..ee3867c 100644 --- a/test/tvlstr.c +++ b/test/tvlstr.c @@ -24,6 +24,10 @@ static char RcsId[] = "$Revision$"; * *************************************************************/ +#ifdef WIN32 +#include <stdio.h> +#endif + #include <testhdf5.h> #include <hdf5.h> |