aboutsummaryrefslogtreecommitdiffstats
path: root/utils/hashtest.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/hashtest.c')
-rw-r--r--utils/hashtest.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/utils/hashtest.c b/utils/hashtest.c
index 95f463da7..7ff7a55b2 100644
--- a/utils/hashtest.c
+++ b/utils/hashtest.c
@@ -366,3 +366,23 @@ 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