summaryrefslogtreecommitdiffstats
path: root/tools/h5repack
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2007-04-04 20:25:42 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2007-04-04 20:25:42 (GMT)
commit1d312bff8025db0f1809caba7a31ba7a44730373 (patch)
tree3edf70a58eaed76c31f1c95ff03c9e11daf61f6f /tools/h5repack
parent3431f74c438b25e7aeba9062ed1e948899457b46 (diff)
downloadhdf5-1d312bff8025db0f1809caba7a31ba7a44730373.zip
hdf5-1d312bff8025db0f1809caba7a31ba7a44730373.tar.gz
hdf5-1d312bff8025db0f1809caba7a31ba7a44730373.tar.bz2
[svn-r13589]
h5repack code cleaning (required reconfigure) tested: linux (32, 64, parallel), solaris
Diffstat (limited to 'tools/h5repack')
-rw-r--r--tools/h5repack/h5repack.c2
-rw-r--r--tools/h5repack/h5repack.h3
-rw-r--r--tools/h5repack/h5repack_copy.c2
-rw-r--r--tools/h5repack/h5repack_filters.c3
-rw-r--r--tools/h5repack/h5repack_list.c4
-rw-r--r--tools/h5repack/h5repack_opttable.c2
-rw-r--r--tools/h5repack/h5repack_parse.c2
-rw-r--r--tools/h5repack/h5repack_refs.c5
-rw-r--r--tools/h5repack/h5repack_verify.c3
-rw-r--r--tools/h5repack/h5repacktst.c5
-rw-r--r--tools/h5repack/testh5repack_detect_szip.c3
11 files changed, 17 insertions, 17 deletions
diff --git a/tools/h5repack/h5repack.c b/tools/h5repack/h5repack.c
index ade6cc1..5ebd68b 100644
--- a/tools/h5repack/h5repack.c
+++ b/tools/h5repack/h5repack.c
@@ -15,8 +15,8 @@
#include <stdlib.h>
#include <string.h>
-#include "h5tools_utils.h"
#include "h5repack.h"
+#include "h5tools_utils.h"
extern char *progname;
diff --git a/tools/h5repack/h5repack.h b/tools/h5repack/h5repack.h
index e59e7dc..a397d0a 100644
--- a/tools/h5repack/h5repack.h
+++ b/tools/h5repack/h5repack.h
@@ -19,8 +19,7 @@
#include "hdf5.h"
#include "h5trav.h"
-#include "h5diff.h"
-#include "h5tools.h"
+
#define H5FOPENERROR "unable to open file"
diff --git a/tools/h5repack/h5repack_copy.c b/tools/h5repack/h5repack_copy.c
index 1782502..4253678 100644
--- a/tools/h5repack/h5repack_copy.c
+++ b/tools/h5repack/h5repack_copy.c
@@ -16,10 +16,10 @@
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
+#include "h5repack.h"
#include "H5private.h"
#include "h5tools.h"
#include "h5tools_utils.h"
-#include "h5repack.h"
extern char *progname;
diff --git a/tools/h5repack/h5repack_filters.c b/tools/h5repack/h5repack_filters.c
index 4ed1fad..32b2e36 100644
--- a/tools/h5repack/h5repack_filters.c
+++ b/tools/h5repack/h5repack_filters.c
@@ -13,9 +13,8 @@
* access to either file, you may request a copy from help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-#include "hdf5.h"
-#include "h5test.h"
#include "h5repack.h"
+#include "h5test.h"
/*-------------------------------------------------------------------------
diff --git a/tools/h5repack/h5repack_list.c b/tools/h5repack/h5repack_list.c
index 203f8a2..3de8101 100644
--- a/tools/h5repack/h5repack_list.c
+++ b/tools/h5repack/h5repack_list.c
@@ -16,9 +16,11 @@
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
+#include "h5repack.h"
#include "H5private.h"
#include "h5tools_utils.h"
-#include "h5repack.h"
+#include "h5diff.h"
+#include "h5tools.h"
extern char *progname;
diff --git a/tools/h5repack/h5repack_opttable.c b/tools/h5repack/h5repack_opttable.c
index 2ac7890..8492885 100644
--- a/tools/h5repack/h5repack_opttable.c
+++ b/tools/h5repack/h5repack_opttable.c
@@ -15,8 +15,8 @@
#include <stdlib.h>
#include <string.h>
-#include "h5tools_utils.h"
#include "h5repack.h"
+#include "h5tools_utils.h"
extern char *progname;
diff --git a/tools/h5repack/h5repack_parse.c b/tools/h5repack/h5repack_parse.c
index 4623828..cf78cac 100644
--- a/tools/h5repack/h5repack_parse.c
+++ b/tools/h5repack/h5repack_parse.c
@@ -17,8 +17,8 @@
#include <string.h>
#include <stdio.h>
#include <ctype.h>
-#include "h5tools_utils.h"
#include "h5repack.h"
+#include "h5tools_utils.h"
extern char *progname;
diff --git a/tools/h5repack/h5repack_refs.c b/tools/h5repack/h5repack_refs.c
index 3b272c8..538c99f 100644
--- a/tools/h5repack/h5repack_refs.c
+++ b/tools/h5repack/h5repack_refs.c
@@ -18,8 +18,11 @@
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
-#include "H5private.h"
#include "h5repack.h"
+#include "H5private.h"
+#include "h5diff.h"
+#include "h5tools.h"
+
/*-------------------------------------------------------------------------
* local functions
diff --git a/tools/h5repack/h5repack_verify.c b/tools/h5repack/h5repack_verify.c
index 7a2fae9..049e059 100644
--- a/tools/h5repack/h5repack_verify.c
+++ b/tools/h5repack/h5repack_verify.c
@@ -13,10 +13,9 @@
* access to either file, you may request a copy from help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-#include "hdf5.h"
+#include "h5repack.h"
#include "h5test.h"
#include "h5tools_utils.h"
-#include "h5repack.h"
extern char *progname;
diff --git a/tools/h5repack/h5repacktst.c b/tools/h5repack/h5repacktst.c
index 81c0e3c..38e050c 100644
--- a/tools/h5repack/h5repacktst.c
+++ b/tools/h5repack/h5repacktst.c
@@ -13,11 +13,10 @@
* access to either file, you may request a copy from help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-
-#include "hdf5.h"
-#include "h5test.h"
#include "h5repack.h"
+#include "h5test.h"
#include "h5diff.h"
+#include "h5tools.h"
#define GOERROR {H5_FAILED(); goto error;}
diff --git a/tools/h5repack/testh5repack_detect_szip.c b/tools/h5repack/testh5repack_detect_szip.c
index 31999bb..9e6d74e 100644
--- a/tools/h5repack/testh5repack_detect_szip.c
+++ b/tools/h5repack/testh5repack_detect_szip.c
@@ -14,9 +14,8 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include <stdio.h>
-#include "hdf5.h"
-#include "h5test.h"
#include "h5repack.h"
+#include "h5test.h"