aboutsummaryrefslogtreecommitdiffstats
path: root/utils/refcounter.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/refcounter.c')
-rw-r--r--utils/refcounter.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/utils/refcounter.c b/utils/refcounter.c
index 5e750619e..4712c26b6 100644
--- a/utils/refcounter.c
+++ b/utils/refcounter.c
@@ -269,3 +269,22 @@ void ast_register_thread(char *name)
void ast_unregister_thread(void *id)
{
}
+#ifdef HAVE_BKTR
+struct ast_bt *ast_bt_create(void);
+struct ast_bt *ast_bt_create(void)
+{
+ return NULL;
+}
+
+int ast_bt_get_addresses(struct ast_bt *bt);
+int ast_bt_get_addresses(struct ast_bt *bt)
+{
+ return 0;
+}
+
+void *ast_bt_destroy(struct ast_bt *bt);
+void *ast_bt_destroy(struct ast_bt *bt)
+{
+ return NULL;
+}
+#endif