Fri Jan 16 13:42:36 CST 2009 Pekka Pessi <first.last@nokia.com>

* torture_bnf.c: fixed warnings from function declarations




git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11838 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2009-02-11 17:09:44 +00:00
parent 63ffde17b9
commit 3a1ac4929c

View File

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