summaryrefslogtreecommitdiffstats
path: root/tools/h5dumptst.c
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-08-04 20:41:57 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-08-04 20:41:57 (GMT)
commita01ff43d8d37904c3dcfc91b8eb31a03a9764a32 (patch)
treedaca1d0fc3e51708b19a7e614d17318046606336 /tools/h5dumptst.c
parentfacbe5ba383639f5d58ac05aa30e15f9042ae95e (diff)
downloadhdf5-a01ff43d8d37904c3dcfc91b8eb31a03a9764a32.zip
hdf5-a01ff43d8d37904c3dcfc91b8eb31a03a9764a32.tar.gz
hdf5-a01ff43d8d37904c3dcfc91b8eb31a03a9764a32.tar.bz2
[svn-r2461] Made some of the functions prototypes so that the compiler wouldn't
complain.
Diffstat (limited to 'tools/h5dumptst.c')
-rw-r--r--tools/h5dumptst.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/h5dumptst.c b/tools/h5dumptst.c
index 25d9ec2..808900a 100644
--- a/tools/h5dumptst.c
+++ b/tools/h5dumptst.c
@@ -61,8 +61,8 @@ void test_enum(void);
void test_objref(void);
void test_datareg(void);
void test_nestcomp(void);
-
-
+void test_opaque(void);
+void test_bitfields(void);
static void test_group(void) {
hid_t fid, group;
@@ -1683,7 +1683,7 @@ void test_nestcomp(void){
}
-void test_opaque(){
+void test_opaque(void) {
hid_t file, type, dataset, space;
char test[100][2];
int x;
@@ -1724,7 +1724,7 @@ void test_opaque(){
}
-void test_bitfields(){
+void test_bitfields(void) {
hid_t file, grp=-1, type=-1, space=-1, dset=-1;
size_t i;
hsize_t nelmts;