From 9a535bd115207d8e5e721336fde015642c562dd0 Mon Sep 17 00:00:00 2001 From: Sean Bright Date: Thu, 29 May 2008 12:12:07 +0000 Subject: Avoid build warning when execinfo.h isn't available. (closes issue #12751) Reported by: ys Patches: check_expr.diff uploaded by ys (license 281) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@118911 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- utils/check_expr.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'utils/check_expr.c') diff --git a/utils/check_expr.c b/utils/check_expr.c index 5c2144c12..e533e381a 100644 --- a/utils/check_expr.c +++ b/utils/check_expr.c @@ -100,6 +100,13 @@ void ast_remove_lock_info(void *lock_addr, struct ast_bt *bt) { /* not a lot to do in a standalone w/o threading! */ } + +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; +} #else void ast_store_lock_info(enum ast_lock_type type, const char *filename, int line_num, const char *func, const char *lock_name, void *lock_addr); @@ -123,13 +130,6 @@ 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; -- cgit v1.2.3