mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-30 15:32:37 +08:00
[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
This commit is contained in:
parent
84143803b2
commit
d3301180f5
@ -24,6 +24,10 @@ static char RcsId[] = "$Revision$";
|
||||
*
|
||||
*************************************************************/
|
||||
|
||||
#ifdef WIN32
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
|
||||
#include <testhdf5.h>
|
||||
|
||||
#include <hdf5.h>
|
||||
|
Loading…
Reference in New Issue
Block a user