diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-03 18:09:16 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-03 18:09:16 (GMT) |
commit | bfd983e7f480782732db48b1302978d840e756bc (patch) | |
tree | 7112b4c777ea78d4fb247cb090bad4f0ff8573cc /test/h5test.h | |
parent | d57e19825bbdaa7cfe9614185a98dbe30a0bef58 (diff) | |
download | hdf5-bfd983e7f480782732db48b1302978d840e756bc.zip hdf5-bfd983e7f480782732db48b1302978d840e756bc.tar.gz hdf5-bfd983e7f480782732db48b1302978d840e756bc.tar.bz2 |
[svn-r3770] Purpose:
Update
Description:
Changed includes of the form:
#include <hdf5_file.h>
to
#include "hdf5_file.h"
so that gcc can pick them up easier without including the system
header files since we don't care about them.
Platforms tested:
Linux
Diffstat (limited to 'test/h5test.h')
-rw-r--r-- | test/h5test.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/h5test.h b/test/h5test.h index 325d1f8..9614b30 100644 --- a/test/h5test.h +++ b/test/h5test.h @@ -11,16 +11,15 @@ #define _H5TEST_H #undef NDEBUG -#include <hdf5.h> +#include "hdf5.h" +#include "H5private.h" -#include <H5private.h> #ifdef STDC_HEADERS # include <signal.h> #endif #define H5T_PACKAGE -#include <H5Tpkg.h> /*to turn off hardware conversions*/ - +#include "H5Tpkg.h" /*to turn off hardware conversions*/ /* * This contains the filename prefix specificied as command line option for |