summaryrefslogtreecommitdiff
path: root/funcs
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2005-11-08 04:48:00 +0000
committerRussell Bryant <russell@russellbryant.com>2005-11-08 04:48:00 +0000
commit987b87662c27e72e0604ff9b600e11270014adfc (patch)
treec7e639938f2771490a3e7a7ca4e92fc23eb6ce01 /funcs
parent511c096592f778a11b23298f0da8a7f8299171e9 (diff)
make app_queue 1.2 jump compliant (issue #5580)
add missing includes of stdio.h remove some unused and duplicate headers git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7026 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'funcs')
-rwxr-xr-xfuncs/func_callerid.c1
-rwxr-xr-xfuncs/func_enum.c1
-rwxr-xr-xfuncs/func_groupcount.c1
-rwxr-xr-xfuncs/func_math.c1
-rwxr-xr-xfuncs/func_strings.c1
-rwxr-xr-xfuncs/func_timeout.c1
-rwxr-xr-xfuncs/func_uri.c1
7 files changed, 7 insertions, 0 deletions
diff --git a/funcs/func_callerid.c b/funcs/func_callerid.c
index 9ccfbeddd..264c404dd 100755
--- a/funcs/func_callerid.c
+++ b/funcs/func_callerid.c
@@ -21,6 +21,7 @@
*/
#include <stdlib.h>
+#include <stdio.h>
#include <string.h>
#include <sys/types.h>
diff --git a/funcs/func_enum.c b/funcs/func_enum.c
index 8034be878..6533d7836 100755
--- a/funcs/func_enum.c
+++ b/funcs/func_enum.c
@@ -25,6 +25,7 @@
*/
#include <stdlib.h>
+#include <stdio.h>
#include "asterisk.h"
diff --git a/funcs/func_groupcount.c b/funcs/func_groupcount.c
index 297422985..0f07d8327 100755
--- a/funcs/func_groupcount.c
+++ b/funcs/func_groupcount.c
@@ -21,6 +21,7 @@
*/
#include <stdlib.h>
+#include <stdio.h>
#include <string.h>
#include <sys/types.h>
diff --git a/funcs/func_math.c b/funcs/func_math.c
index e53eb4023..e8a49acc8 100755
--- a/funcs/func_math.c
+++ b/funcs/func_math.c
@@ -23,6 +23,7 @@
*/
#include <stdlib.h>
+#include <stdio.h>
#include <string.h>
#include <sys/types.h>
diff --git a/funcs/func_strings.c b/funcs/func_strings.c
index ab9474d9b..91564d9e4 100755
--- a/funcs/func_strings.c
+++ b/funcs/func_strings.c
@@ -23,6 +23,7 @@
*/
#include <stdlib.h>
+#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <regex.h>
diff --git a/funcs/func_timeout.c b/funcs/func_timeout.c
index d7d5cf4ef..4e9256ef5 100755
--- a/funcs/func_timeout.c
+++ b/funcs/func_timeout.c
@@ -23,6 +23,7 @@
*/
#include <stdlib.h>
+#include <stdio.h>
#include <string.h>
#include <sys/types.h>
diff --git a/funcs/func_uri.c b/funcs/func_uri.c
index f75023c5f..f985f38c1 100755
--- a/funcs/func_uri.c
+++ b/funcs/func_uri.c
@@ -26,6 +26,7 @@
*/
#include <stdlib.h>
+#include <stdio.h>
#include <string.h>
#include <sys/types.h>