diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-05 21:37:17 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-05 21:37:17 (GMT) |
commit | e13b8e897166c47b5f5a5244fffbb6889e10b203 (patch) | |
tree | e49e5916e26505471296801f0879ddddd793cf66 /tools/h5dump | |
parent | 5e483d0184df78b6d3024c5ececff24406ad4b43 (diff) | |
download | hdf5-e13b8e897166c47b5f5a5244fffbb6889e10b203.zip hdf5-e13b8e897166c47b5f5a5244fffbb6889e10b203.tar.gz hdf5-e13b8e897166c47b5f5a5244fffbb6889e10b203.tar.bz2 |
[svn-r3782] Purpose:
Update
Description:
Changed old style includes "with <>" to new style 'with ""' for
dependencies gathering.
Diffstat (limited to 'tools/h5dump')
-rw-r--r-- | tools/h5dump/h5dumptst.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/h5dump/h5dumptst.c b/tools/h5dump/h5dumptst.c index 4e01627..01438d7 100644 --- a/tools/h5dump/h5dumptst.c +++ b/tools/h5dump/h5dumptst.c @@ -8,8 +8,9 @@ * of the expected output and update the corresponding *.ddl files. */ #include <limits.h> + #include "hdf5.h" -#include <H5private.h> +#include "H5private.h" #define FILE1 "tgroup.h5" #define FILE2 "tdset.h5" |