summaryrefslogtreecommitdiffstats
path: root/src/H5Tpkg.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-04-24 03:47:06 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-04-24 03:47:06 (GMT)
commit77706cc276af29d0aee26d8051854da2f824ab9d (patch)
treed1c046cd0bccfd108e2617e8909062683cf3c165 /src/H5Tpkg.h
parentb57f3b955f297d4f99ead2efa4ee6a41a5501e97 (diff)
downloadhdf5-77706cc276af29d0aee26d8051854da2f824ab9d.zip
hdf5-77706cc276af29d0aee26d8051854da2f824ab9d.tar.gz
hdf5-77706cc276af29d0aee26d8051854da2f824ab9d.tar.bz2
[svn-r8416] Purpose:
Code cleanup Description: Reduce warnings w/PC-Lint in various ways Platforms tested: PC-Lint too minor to require h5committest Misc. update:
Diffstat (limited to 'src/H5Tpkg.h')
-rw-r--r--src/H5Tpkg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Tpkg.h b/src/H5Tpkg.h
index 1ecf0f3..11a00c9 100644
--- a/src/H5Tpkg.h
+++ b/src/H5Tpkg.h
@@ -323,7 +323,6 @@ H5_DLL H5T_sign_t H5T_get_sign(H5T_t const *dt);
H5_DLL H5T_t *H5T_get_super(H5T_t *dt);
H5_DLL char *H5T_get_member_name(H5T_t const *dt, unsigned membno);
H5_DLL herr_t H5T_get_member_value(const H5T_t *dt, unsigned membno, void *value);
-H5_DLL H5T_t *H5T_get_member_type(H5T_t *dt, unsigned membno);
H5_DLL int H5T_get_nmembers(const H5T_t *dt);
H5_DLL herr_t H5T_insert(H5T_t *parent, const char *name, size_t offset,
const H5T_t *member);
@@ -1091,6 +1090,7 @@ 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 H5T_t *H5T_get_member_type(const H5T_t *dt, unsigned membno);
+H5_DLL htri_t H5T_is_packed(const H5T_t *dt);
#endif