aboutsummaryrefslogtreecommitdiffstats
path: root/funcs
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-08 04:48:00 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-08 04:48:00 +0000
commit465d1d7712849904d15efcdeaf97d7bcee060d95 (patch)
treec7e639938f2771490a3e7a7ca4e92fc23eb6ce01 /funcs
parent488a0f5ebbe12ff1b438cad6b44359f91a38084e (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: http://svn.digium.com/svn/asterisk/trunk@7026 f38db490-d61c-443f-a65b-d21fe96a405b
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>