diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-01-03 18:37:40 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-01-03 18:37:40 (GMT) |
commit | 17b4201476fea72d5a2b2ef0354f1b22e64d36ca (patch) | |
tree | 119ed8bfdb75006322fb1203d4d8784a60b4d34a /src | |
parent | ed2764c29b48f0fd8f82d4936da1403c6fa48efa (diff) | |
download | hdf5-17b4201476fea72d5a2b2ef0354f1b22e64d36ca.zip hdf5-17b4201476fea72d5a2b2ef0354f1b22e64d36ca.tar.gz hdf5-17b4201476fea72d5a2b2ef0354f1b22e64d36ca.tar.bz2 |
[svn-r11860] Purpose:
Bug fix
Description:
Add missing prototype for H5G_user_path_test()
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Gpkg.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/H5Gpkg.h b/src/H5Gpkg.h index e7318ab..6d47c38 100644 --- a/src/H5Gpkg.h +++ b/src/H5Gpkg.h @@ -231,4 +231,10 @@ H5_DLL int H5G_node_type(H5F_t *f, hid_t dxpl_id, const void *_lt_key, haddr_t a H5_DLL herr_t H5G_name_init(H5G_entry_t *name, const char *path); H5_DLL herr_t H5G_name_set(H5G_entry_t *loc, H5G_entry_t *obj, const char *name); +/* Testing functions */ +#ifdef H5G_TESTING +H5_DLL herr_t H5G_user_path_test(hid_t obj_id, char *user_path, size_t *user_path_len, unsigned *user_path_hidden); +#endif /* H5G_TESTING */ + #endif + |