diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-07-16 20:48:40 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-07-16 20:48:40 (GMT) |
commit | c97fddc786356a1832e6cb3ac3f28b781d01584d (patch) | |
tree | e9ea99bbf3387f45b18d3b6503597a1c63662cab /src/H5MFprivate.h | |
parent | cb516077680041aecc338936d1aa3f84347e0e0d (diff) | |
download | hdf5-c97fddc786356a1832e6cb3ac3f28b781d01584d.zip hdf5-c97fddc786356a1832e6cb3ac3f28b781d01584d.tar.gz hdf5-c97fddc786356a1832e6cb3ac3f28b781d01584d.tar.bz2 |
[svn-r8892] Purpose:
Code cleanup
Description:
Clean up a bunch of warnings and bring new code better inline with current
library coding practice.
Platforms tested:
FreeBSD 4.10 (sleipnir) w/parallel
Too minor to require h5committest
Misc. update:
Diffstat (limited to 'src/H5MFprivate.h')
-rw-r--r-- | src/H5MFprivate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5MFprivate.h b/src/H5MFprivate.h index 2a129ea..ee35c2a 100644 --- a/src/H5MFprivate.h +++ b/src/H5MFprivate.h @@ -49,8 +49,8 @@ H5_DLL herr_t H5MF_xfree(H5F_t *f, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, H5_DLL haddr_t H5MF_realloc(H5F_t *f, H5FD_mem_t type, hid_t dxpl_id, haddr_t old_addr, hsize_t old_size, hsize_t new_size); H5_DLL herr_t H5MF_reserve(H5F_t *f, hsize_t size); -H5_DLL void H5MF_free_reserved(H5F_t *f, hsize_t size); -H5_DLL int H5MF_alloc_overflow(H5F_t *f, hsize_t size); +H5_DLL herr_t H5MF_free_reserved(H5F_t *f, hsize_t size); +H5_DLL hbool_t H5MF_alloc_overflow(H5F_t *f, hsize_t size); H5_DLL htri_t H5MF_can_extend(H5F_t *f, H5FD_mem_t type, haddr_t addr, hsize_t size, hsize_t extra_requested); H5_DLL htri_t H5MF_extend(H5F_t *f, H5FD_mem_t type, haddr_t addr, hsize_t size, |