Skip to content
Snippets Groups Projects
Commit e89e9522 authored by Richard Mudgett's avatar Richard Mudgett
Browse files

This is no longer needed.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@393239 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent e72b0099
No related branches found
No related tags found
No related merge requests found
......@@ -83,19 +83,3 @@ int ast_datastore_free(struct ast_datastore *datastore)
return res;
}
/* DO NOT PUT ADDITIONAL FUNCTIONS BELOW THIS BOUNDARY
*
* ONLY FUNCTIONS FOR PROVIDING BACKWARDS ABI COMPATIBILITY BELONG HERE
*
*/
/* Provide binary compatibility for modules that call ast_datastore_alloc() directly;
* newly compiled modules will call __ast_datastore_alloc() via the macros in datastore.h
*/
#undef ast_datastore_alloc
struct ast_datastore *ast_datastore_alloc(const struct ast_datastore_info *info, const char *uid);
struct ast_datastore *ast_datastore_alloc(const struct ast_datastore_info *info, const char *uid)
{
return __ast_datastore_alloc(info, uid, __FILE__, __LINE__, __FUNCTION__);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment