summaryrefslogtreecommitdiff
path: root/main/datastore.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2013-06-29 00:18:57 +0000
committerRichard Mudgett <rmudgett@digium.com>2013-06-29 00:18:57 +0000
commite89e95228f94e28b30a02985ff1c9b6493c6e98c (patch)
treec1845965282bffe290284ca049b3185e43e44884 /main/datastore.c
parente72b00992859a0dc5e41be35ac6ed4d651b02560 (diff)
This is no longer needed.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@393239 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/datastore.c')
-rw-r--r--main/datastore.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/main/datastore.c b/main/datastore.c
index d086d673a..ed9b3210e 100644
--- a/main/datastore.c
+++ b/main/datastore.c
@@ -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__);
-}