[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:
MuQun Yang 2001-01-03 18:41:45 -05:00
parent 84143803b2
commit d3301180f5

View File

@ -24,6 +24,10 @@ static char RcsId[] = "$Revision$";
*
*************************************************************/
#ifdef WIN32
#include <stdio.h>
#endif
#include <testhdf5.h>
#include <hdf5.h>