summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzuul <zuul@gerrit.asterisk.org>2017-03-30 18:39:19 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2017-03-30 18:39:19 -0500
commitf040eb05020f8047389cb4c6f08069bc530182bf (patch)
tree509ee10b19697658690214cfda9b6681152e50c7
parent0667febf3d503abb3c6117b148d1360d9d90e6b7 (diff)
parent3c23ebdef4925c1391ad084cd3f06b837d7cad3b (diff)
Merge "CEL: Remove header declarations of non-existant functions." into 13
-rw-r--r--include/asterisk/cel.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/include/asterisk/cel.h b/include/asterisk/cel.h
index 350b4bf9f..c77a3538c 100644
--- a/include/asterisk/cel.h
+++ b/include/asterisk/cel.h
@@ -87,29 +87,6 @@ enum ast_cel_event_type {
*/
unsigned int ast_cel_check_enabled(void);
-/*!
- * \brief Allocate a CEL record
- *
- * \since 1.8
- *
- * \note The CEL record must be destroyed with ast_cel_destroy().
- *
- * \retval non-NULL an allocated ast_cel structure
- * \retval NULL error
- */
-struct ast_cel *ast_cel_alloc(void);
-
-/*!
- * \brief Destroy a CEL record.
- *
- * \param cel the record to destroy
- *
- * \since 1.8
- *
- * \return nothing.
- */
-void ast_cel_destroy(struct ast_cel *cel);
-
/*!
* \brief Get the name of a CEL event type
*