summaryrefslogtreecommitdiffstats
path: root/fortran/src/H5Ef.c
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2015-07-15 18:56:28 (GMT)
committerScot Breitenfeld <brtnfld@hdfgroup.org>2015-07-15 18:56:28 (GMT)
commit8617384653e7cd1bc75a2668a3c9196705715d77 (patch)
tree0d44ecabb1c4ab4afdc35b2f945a6b66966b4532 /fortran/src/H5Ef.c
parentf63785a1abd8cfaf23ad1ed76da7619d3e1e0b83 (diff)
downloadhdf5-8617384653e7cd1bc75a2668a3c9196705715d77.zip
hdf5-8617384653e7cd1bc75a2668a3c9196705715d77.tar.gz
hdf5-8617384653e7cd1bc75a2668a3c9196705715d77.tar.bz2
[svn-r27393] removed unused C functions
Diffstat (limited to 'fortran/src/H5Ef.c')
-rw-r--r--fortran/src/H5Ef.c41
1 files changed, 2 insertions, 39 deletions
diff --git a/fortran/src/H5Ef.c b/fortran/src/H5Ef.c
index bba0157..4b1d4c9 100644
--- a/fortran/src/H5Ef.c
+++ b/fortran/src/H5Ef.c
@@ -235,51 +235,14 @@ done:
return ret_value;
}
-/****if* H5Ef/h5eset_auto_c
- * NAME
- * h5eset_auto_c
- * PURPOSE
- * Call H5Eset_auto to turn automatic error printing on or off.
- * INPUTS
- * printflag - flag to turn automatic error printing on or off.
- * OUTPUTS
- *
- * RETURNS
- * 0 on success, -1 on failure
- * AUTHOR
- * Elena Pourmal
- * Friday, November 17, 2000
- * HISTORY
- * Major bug fix: Function never disabled printing.
- * SOURCE
-*/
-int_f
-h5eset_auto_c(int_f* printflag)
-/******/
-{
- herr_t status = -1;
- int_f ret_value = 0;
-
- if(*printflag == 1)
- status = H5Eset_auto2(H5E_DEFAULT, (H5E_auto2_t)H5Eprint2, stderr);
- else if(*printflag == 0)
- status = H5Eset_auto2(H5E_DEFAULT, NULL, NULL);
- if(status < 0)
- HGOTO_DONE(FAIL)
-
-done:
- return ret_value;
-}
-
-
/****if* H5Ef/h5eset_auto2_c
* NAME
* h5eset_auto2_c
* PURPOSE
* Calls H5Eset_auto2
* INPUTS
- * estack_id - Error stack identifier.
- * func - Function to be called upon an error condition.
+ * estack_id - Error stack identifier.
+ * func - Function to be called upon an error condition.
* client_data - Data passed to the error function.
*
* RETURNS