]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Fri Jan 16 13:42:36 CST 2009 Pekka Pessi <first.last@nokia.com>
authorMichael Jerris <mike@jerris.com>
Wed, 11 Feb 2009 17:09:44 +0000 (17:09 +0000)
committerMichael Jerris <mike@jerris.com>
Wed, 11 Feb 2009 17:09:44 +0000 (17:09 +0000)
  * torture_bnf.c: fixed warnings from function declarations

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11838 d0543943-73ff-0310-b7d9-9358b9ac24b2

libs/sofia-sip/libsofia-sip-ua/bnf/torture_bnf.c

index b2a1b93e72bd2cc286dbb250f14c13415cf6844e..005455dedef970e6bd7c2e0d85c4ec0359b49751 100644 (file)
@@ -49,7 +49,7 @@ static int test_flags = 0;
 
 char const name[] = "torture_bnf";
 
-int count_bnf(int bnf_flags)
+static int count_bnf(int bnf_flags)
 {
   int i, n;
 
@@ -60,7 +60,7 @@ int count_bnf(int bnf_flags)
   return n;
 }
 
-int bnf_test(void)
+static int bnf_test(void)
 {
   BEGIN();
   TEST_1(IS_TOKEN('a'));
@@ -92,7 +92,7 @@ int bnf_test(void)
   END();
 }
 
-int ip_test(void)
+static int ip_test(void)
 {
   BEGIN();
   char *s;
@@ -249,7 +249,7 @@ int ip_test(void)
 
 #include <sofia-sip/hostdomain.h>
 
-int host_test(void)
+static int host_test(void)
 {
   BEGIN();
 
@@ -347,7 +347,7 @@ int host_test(void)
   END();
 }
 
-void usage(int exitcode)
+static void usage(int exitcode)
 {
   fprintf(stderr, "usage: %s [-v] [-a]\n", name);
   exit(exitcode);