From 8c618b82fc8fb7f33a3e9077008ea3853723aa4a Mon Sep 17 00:00:00 2001 From: Kevin Easton Date: Sun, 6 Oct 2013 13:20:46 +0000 Subject: [PATCH] Fix some longstanding build problems with !WANT_CDCC. git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@380 13b04d17-f746-0410-82c6-800466cd88b0 --- source/cdcc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/cdcc.c b/source/cdcc.c index 2e557ae..06f62c4 100644 --- a/source/cdcc.c +++ b/source/cdcc.c @@ -1936,7 +1936,7 @@ int BX_get_num_queue(void) /* this is required for functions.c to compile properly */ -BUILD_IN_FUNCTION(function_cdcc) +BUILT_IN_FUNCTION(function_cdcc) { return m_strdup(empty_string); } @@ -1946,7 +1946,7 @@ BUILT_IN_FUNCTION(function_sendcdcc) return m_strdup(empty_string); } -int get_num_queue(void) +int BX_get_num_queue(void) { return 0; }