summaryrefslogtreecommitdiffstats
path: root/src/H5Fpkg.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-07-07 16:20:43 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-07-07 16:20:43 (GMT)
commit6028d7f9c9a7a8ff109368b89898e010cc4abcbb (patch)
tree2d713885f0c80be6ffcef9c9ae22fd5018413e90 /src/H5Fpkg.h
parent76ae1a3f451db2f91ad70975282ff25ae0c68ace (diff)
downloadhdf5-6028d7f9c9a7a8ff109368b89898e010cc4abcbb.zip
hdf5-6028d7f9c9a7a8ff109368b89898e010cc4abcbb.tar.gz
hdf5-6028d7f9c9a7a8ff109368b89898e010cc4abcbb.tar.bz2
[svn-r7172] Purpose:
Code cleanup Description: Remove "UNUSED" keyword from function prototypes in header files. Platforms tested: IA64 Linux cluster (titan) too small to need commit test
Diffstat (limited to 'src/H5Fpkg.h')
-rw-r--r--src/H5Fpkg.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Fpkg.h b/src/H5Fpkg.h
index 5bd2ec3..2d92ad3 100644
--- a/src/H5Fpkg.h
+++ b/src/H5Fpkg.h
@@ -228,13 +228,13 @@ H5_DLL ssize_t H5F_contig_writevv(H5F_t *f, hsize_t _max_data, haddr_t _addr,
hid_t dxpl_id, const void *buf);
/* Functions that operate on compact dataset storage */
-H5_DLL ssize_t H5F_compact_readvv(H5F_t UNUSED *f, const struct H5O_layout_t *layout,
+H5_DLL ssize_t H5F_compact_readvv(H5F_t *f, const struct H5O_layout_t *layout,
size_t dset_max_nseq, size_t *dset_curr_seq, size_t dset_size_arr[], hsize_t dset_offset_arr[],
size_t mem_max_nseq, size_t *mem_curr_seq, size_t mem_size_arr[], hsize_t mem_offset_arr[],
- hid_t UNUSED dxpl_id, void *buf);
-H5_DLL ssize_t H5F_compact_writevv(H5F_t UNUSED *f, struct H5O_layout_t *layout,
+ hid_t dxpl_id, void *buf);
+H5_DLL ssize_t H5F_compact_writevv(H5F_t *f, struct H5O_layout_t *layout,
size_t dset_max_nseq, size_t *dset_curr_seq, size_t dset_size_arr[], hsize_t dset_offset_arr[],
size_t mem_max_nseq, size_t *mem_curr_seq, size_t mem_size_arr[], hsize_t mem_offset_arr[],
- hid_t UNUSED dxpl_id, const void *buf);
+ hid_t dxpl_id, const void *buf);
#endif