aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-05-28 15:56:41 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-05-28 15:56:41 +0000
commitb8c45c3168e85b0d71d68ef9faf32f790244377a (patch)
treef64cd8af8931574fe7e20718c91c6212aed82afe /utils
parent5b36af1375d3f6e332f11a1445352eebf4aa545d (diff)
Fix a linkage error related to the lock backtrace support
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@118695 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'utils')
-rw-r--r--utils/check_expr.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/utils/check_expr.c b/utils/check_expr.c
index 5293acc26..5c2144c12 100644
--- a/utils/check_expr.c
+++ b/utils/check_expr.c
@@ -123,6 +123,13 @@ void ast_mark_lock_acquired(void *foo)
}
#endif
+int ast_bt_get_addresses(struct ast_bt *bt);
+int ast_bt_get_addresses(struct ast_bt *bt)
+{
+ /* Suck it, you stupid utils directory! */
+ return 0;
+}
+
static int global_lineno = 1;
static int global_expr_count=0;
static int global_expr_max_size=0;