diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-10-09 13:13:57 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-10-09 13:13:57 (GMT) |
commit | 2f798b85df4a523fa1d6fd320abca7255a9e7a9a (patch) | |
tree | 8eb6f8f1da143915b233bc06e8bd2d942ad2520f /src/H5P.c | |
parent | 84276675aaa6c73cff2cb2aaab6e3526f6408340 (diff) | |
download | hdf5-2f798b85df4a523fa1d6fd320abca7255a9e7a9a.zip hdf5-2f798b85df4a523fa1d6fd320abca7255a9e7a9a.tar.gz hdf5-2f798b85df4a523fa1d6fd320abca7255a9e7a9a.tar.bz2 |
[svn-r5968] Purpose:
Code cleanup
Description:
Change new H5P_get_class_path and H5P_open_class_path functions to be non-
static and put prototypes in H5Pprivate.h
Platforms tested:
FreeBSD 4.6 (sleipnir) (no triple-check necessary)
Diffstat (limited to 'src/H5P.c')
-rw-r--r-- | src/H5P.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4698,7 +4698,7 @@ done: EXAMPLES REVISION LOG --------------------------------------------------------------------------*/ -static char * +char * H5P_get_class_path(H5P_genclass_t *pclass) { char *par_path; /* Parent class's full path */ @@ -4806,7 +4806,7 @@ done: EXAMPLES REVISION LOG --------------------------------------------------------------------------*/ -static H5P_genclass_t * +H5P_genclass_t * H5P_open_class_path(const char *path) { char *tmp_path=NULL; /* Temporary copy of the path */ |