diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-05-24 14:27:04 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-05-24 14:27:04 (GMT) |
commit | c2d3d0a005275837f30515d1d2098b4a219ddc6b (patch) | |
tree | 54b925869e56b58e292733843d0fdd6e6f9f5d94 | |
parent | 65de8add1f47b0a8a0f1e5932ce0684fc2d529fd (diff) | |
download | hdf5-c2d3d0a005275837f30515d1d2098b4a219ddc6b.zip hdf5-c2d3d0a005275837f30515d1d2098b4a219ddc6b.tar.gz hdf5-c2d3d0a005275837f30515d1d2098b4a219ddc6b.tar.bz2 |
[svn-r13806] Description:
Correct prototype for H5Sextent_equal()
Tested on:
Mac OS X/32 10.4.9 (amazon)
FreeBSD/32 6.2 (duty)
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
-rw-r--r-- | src/H5Spublic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Spublic.h b/src/H5Spublic.h index 95135b9..4a49da2 100644 --- a/src/H5Spublic.h +++ b/src/H5Spublic.h @@ -131,7 +131,7 @@ H5_DLL herr_t H5Sselect_elements(hid_t space_id, H5S_seloper_t op, H5_DLL H5S_class_t H5Sget_simple_extent_type(hid_t space_id); H5_DLL herr_t H5Sset_extent_none(hid_t space_id); H5_DLL herr_t H5Sextent_copy(hid_t dst_id,hid_t src_id); -H5_DLL herr_t H5Sextent_equal(hid_t sid1, hid_t sid2); +H5_DLL htri_t H5Sextent_equal(hid_t sid1, hid_t sid2); H5_DLL herr_t H5Sselect_all(hid_t spaceid); H5_DLL herr_t H5Sselect_none(hid_t spaceid); H5_DLL herr_t H5Soffset_simple(hid_t space_id, const hssize_t *offset); |