summaryrefslogtreecommitdiffstats
path: root/src/H5Tpkg.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-10-06 16:35:23 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-10-06 16:35:23 (GMT)
commitd963b5dee027ec12d8ca119327bb8c6192148fc9 (patch)
tree5e31c370c1b873af15716c952e7738404f8da07d /src/H5Tpkg.h
parentc26518498b432684e99a564f1b4f66c3583c2a05 (diff)
downloadhdf5-d963b5dee027ec12d8ca119327bb8c6192148fc9.zip
hdf5-d963b5dee027ec12d8ca119327bb8c6192148fc9.tar.gz
hdf5-d963b5dee027ec12d8ca119327bb8c6192148fc9.tar.bz2
[svn-r9376] Purpose:
Bug fix Description: Close a couple of memory leaks Platforms tested: FreeBSD 4.10 (sleipnir) Solaris 2.7 (arabica) w/purify Linux 2.4 (verbena) too minor for h5committest
Diffstat (limited to 'src/H5Tpkg.h')
-rw-r--r--src/H5Tpkg.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Tpkg.h b/src/H5Tpkg.h
index e29b873..e9f7c89 100644
--- a/src/H5Tpkg.h
+++ b/src/H5Tpkg.h
@@ -876,7 +876,8 @@ H5_DLL H5T_t * H5T_array_create(H5T_t *base, int ndims,
const hsize_t dim[/* ndims */], const int perm[/* ndims */]);
/* Compound functions */
-H5_DLL htri_t H5T_is_packed(H5T_t *dt);
H5_DLL size_t H5T_get_member_offset(H5T_t *dt, int membno);
+H5_DLL size_t H5T_get_member_size(H5T_t *dt, int membno);
+H5_DLL htri_t H5T_is_packed(H5T_t *dt);
#endif