summaryrefslogtreecommitdiffstats
path: root/src/H5HL.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-06-04 15:25:23 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-06-04 15:25:23 (GMT)
commitb56429d0863efa2595417847e92eab73b43bc5ae (patch)
tree14235d2364209ffe11c3ac6bfdfcc5456089787b /src/H5HL.c
parentbb042d83c73df85f30c7103e9ff93b5cc630fced (diff)
downloadhdf5-b56429d0863efa2595417847e92eab73b43bc5ae.zip
hdf5-b56429d0863efa2595417847e92eab73b43bc5ae.tar.gz
hdf5-b56429d0863efa2595417847e92eab73b43bc5ae.tar.bz2
[svn-r6951] Purpose:
Code cleanup Description: Clean up various warnings & comment out unused code. Platforms tested: FreeBSD 4.8 (sleipnir) w/C++ FreeBSD 4.8 (sleipnir) w/parallel h5committested
Diffstat (limited to 'src/H5HL.c')
-rw-r--r--src/H5HL.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5HL.c b/src/H5HL.c
index 3cf24a2..98e2323 100644
--- a/src/H5HL.c
+++ b/src/H5HL.c
@@ -71,9 +71,9 @@ typedef struct H5HL_t {
} H5HL_t;
/* PRIVATE PROTOTYPES */
+#ifdef NOT_YET
static void *H5HL_read(H5F_t *f, hid_t dxpl_id, haddr_t addr, size_t offset, size_t size,
void *buf);
-#ifdef NOT_YET
static herr_t H5HL_write(H5F_t *f, hid_t dxpl_id, haddr_t addr, size_t offset, size_t size,
const void *buf);
#endif /* NOT_YET */
@@ -621,6 +621,7 @@ H5HL_clear(H5HL_t *heap)
* The ADDR argument is passed by value.
*-------------------------------------------------------------------------
*/
+#ifdef NOT_YET
static void *
H5HL_read(H5F_t *f, hid_t dxpl_id, haddr_t addr, size_t offset, size_t size, void *buf)
{
@@ -648,6 +649,7 @@ H5HL_read(H5F_t *f, hid_t dxpl_id, haddr_t addr, size_t offset, size_t size, voi
done:
FUNC_LEAVE_NOAPI(ret_value);
}
+#endif /* NOT_YET */
/*-------------------------------------------------------------------------