git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7063 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2005-11-11 00:35:21 +00:00
parent ba349963a8
commit f603eb0135
3 changed files with 5 additions and 1 deletions

View File

@@ -1,5 +1,8 @@
2005-11-10 Kevin P. Fleming <kpfleming@digium.com> 2005-11-10 Kevin P. Fleming <kpfleming@digium.com>
* channels/chan_misdn.c: include stdio.h (issue #5671)
* channels/chan_misdn_config.c: fix prototype warning (issue #5671)
* pbx.c: remove apps that were deprecated before 1.0 was released (issue #5673) * pbx.c: remove apps that were deprecated before 1.0 was released (issue #5673)
* apps/app_striplsd.c, apps/app_substring.c: remove apps that were deprecated before 1.0 was released (issue #5673) * apps/app_striplsd.c, apps/app_substring.c: remove apps that were deprecated before 1.0 was released (issue #5673)

View File

@@ -149,7 +149,7 @@ static inline void free_robin_list_r (struct robin_list *r)
} }
} }
static void free_robin_list () static void free_robin_list ( void )
{ {
free_robin_list_r(robin); free_robin_list_r(robin);
} }

View File

@@ -36,6 +36,7 @@
#include <asterisk/strings.h> #include <asterisk/strings.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <stdio.h>
#include <asterisk/utils.h> #include <asterisk/utils.h>
#define AST_LOAD_CFG ast_config_load #define AST_LOAD_CFG ast_config_load