diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-03 17:47:08 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-03 17:47:08 (GMT) |
commit | 6c130407ebd653e967526c4d97bed3b76f2bf59d (patch) | |
tree | 34b38706dfa41c4ffe33e8a305ffd46f431497d3 /tools/h5ls/h5ls.c | |
parent | f9e2023be16fcb077c973ab731bf6c4926b68e9f (diff) | |
download | hdf5-6c130407ebd653e967526c4d97bed3b76f2bf59d.zip hdf5-6c130407ebd653e967526c4d97bed3b76f2bf59d.tar.gz hdf5-6c130407ebd653e967526c4d97bed3b76f2bf59d.tar.bz2 |
[svn-r3768] Purpose:
Update
Description:
Replaced "#include <hdf5_file.h>" with the equivalent, but better
#include "hdf5_file.h" so that gcc can pick up our header files more
easily.
Platforms tested:
Linux
Diffstat (limited to 'tools/h5ls/h5ls.c')
-rw-r--r-- | tools/h5ls/h5ls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5ls/h5ls.c b/tools/h5ls/h5ls.c index 45a726f..5a2b0a1 100644 --- a/tools/h5ls/h5ls.c +++ b/tools/h5ls/h5ls.c @@ -12,8 +12,8 @@ * programming environment it declares. Other than that, h5ls only calls * HDF5 API functions (except for H5G_basename()) */ -#include <H5private.h> -#include <h5tools.h> +#include "H5private.h" +#include "h5tools.h" /* * If defined then include the file name as part of the object name when |