summaryrefslogtreecommitdiff
path: root/include/apr_time.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/apr_time.h')
-rw-r--r--include/apr_time.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/apr_time.h b/include/apr_time.h
index 60ae2de86..44ff67597 100644
--- a/include/apr_time.h
+++ b/include/apr_time.h
@@ -174,11 +174,6 @@ APR_DECLARE(apr_status_t) apr_time_exp_tz(apr_time_exp_t *result,
apr_time_t input,
apr_int32_t offs);
-/** @deprecated @see apr_time_exp_tz */
-APR_DECLARE(apr_status_t) apr_explode_time(apr_time_exp_t *result,
- apr_time_t input,
- apr_int32_t offs);
-
/**
* convert a time to its human readable components in GMT timezone
* @param result the exploded time
@@ -195,10 +190,6 @@ APR_DECLARE(apr_status_t) apr_time_exp_gmt(apr_time_exp_t *result,
APR_DECLARE(apr_status_t) apr_time_exp_lt(apr_time_exp_t *result,
apr_time_t input);
-/** @deprecated @see apr_time_exp_lt */
-APR_DECLARE(apr_status_t) apr_explode_localtime(apr_time_exp_t *result,
- apr_time_t input);
-
/**
* Convert time value from human readable format to a numeric apr_time_t
* e.g. elapsed usec since epoch
@@ -217,10 +208,6 @@ APR_DECLARE(apr_status_t) apr_time_exp_get(apr_time_t *result,
APR_DECLARE(apr_status_t) apr_time_exp_gmt_get(apr_time_t *result,
apr_time_exp_t *input);
-/** @deprecated @see apr_time_exp_gmt_get */
-APR_DECLARE(apr_status_t) apr_implode_gmt(apr_time_t *result,
- apr_time_exp_t *input);
-
/**
* Sleep for the specified number of micro-seconds.
* @param t desired amount of time to sleep.