summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-10-08 13:19:34 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-10-08 13:19:52 (GMT)
commite4ea70a674aef20203b242ef808507b2896e3f84 (patch)
tree2b94818425a7e938b3bfc631a23ebb49a5791a7d /tools
parent3008aa61963303c45ffbe04585d5e05e24be9d92 (diff)
downloadhdf5-e4ea70a674aef20203b242ef808507b2896e3f84.zip
hdf5-e4ea70a674aef20203b242ef808507b2896e3f84.tar.gz
hdf5-e4ea70a674aef20203b242ef808507b2896e3f84.tar.bz2
HDFFV-10903 correct include location
Diffstat (limited to 'tools')
-rw-r--r--tools/lib/h5tools_utils.c4
-rw-r--r--tools/lib/h5tools_utils.h6
2 files changed, 5 insertions, 5 deletions
diff --git a/tools/lib/h5tools_utils.c b/tools/lib/h5tools_utils.c
index 9b564c0..b6b758c 100644
--- a/tools/lib/h5tools_utils.c
+++ b/tools/lib/h5tools_utils.c
@@ -21,10 +21,6 @@
#include "H5private.h"
#include "h5trav.h"
-#ifdef H5_HAVE_ROS3_VFD
-#include "H5FDros3.h"
-#endif
-
/* global variables */
unsigned h5tools_nCols = 80;
/* ``get_option'' variables */
diff --git a/tools/lib/h5tools_utils.h b/tools/lib/h5tools_utils.h
index 0fa5250..0a4044c 100644
--- a/tools/lib/h5tools_utils.h
+++ b/tools/lib/h5tools_utils.h
@@ -22,6 +22,10 @@
#include "hdf5.h"
+#ifdef H5_HAVE_ROS3_VFD
+#include "H5FDros3.h"
+#endif
+
#ifdef __cplusplus
extern "C" {
#endif
@@ -183,7 +187,7 @@ H5TOOLS_DLL int h5tools_set_configured_fapl(hid_t fapl_id,
const char vfd_name[],
void *fapl_t_ptr);
#ifdef H5_HAVE_ROS3_VFD
-H5TOOLS_DLL int h5tools_populate_ros3_fapl(H5FD_ros3_fapl_t *fa,
+H5TOOLS_DLL int h5tools_populate_ros3_fapl(H5FD_ros3_fapl_t *fa,
const char **values);
#endif /* H5_HAVE_ROS3_VFD */