summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorey Farrell <git@cfware.com>2017-03-30 11:18:38 -0400
committerCorey Farrell <git@cfware.com>2017-03-30 10:21:04 -0500
commit4e5cc70fb46b0737da94bb0e9783818fa3610c6c (patch)
tree6a4b801032fc6c61280d79e2f6f5c154211b1d7a
parent7ac5a33920bae82188c0d7aae97ce0e3979f2f22 (diff)
CEL: Remove header declarations of non-existant functions.
ast_cel_alloc and ast_cel_destroy do not exist in code, remove them from the headers. Change-Id: I99ce848e2e109e7d61771559f559b9e57973e45c
-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
*