* torture_bnf.c: fixed warnings from function declarations
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11838
d0543943-73ff-0310-b7d9-
9358b9ac24b2
char const name[] = "torture_bnf";
-int count_bnf(int bnf_flags)
+static int count_bnf(int bnf_flags)
{
int i, n;
return n;
}
-int bnf_test(void)
+static int bnf_test(void)
{
BEGIN();
TEST_1(IS_TOKEN('a'));
END();
}
-int ip_test(void)
+static int ip_test(void)
{
BEGIN();
char *s;
#include <sofia-sip/hostdomain.h>
-int host_test(void)
+static int host_test(void)
{
BEGIN();
END();
}
-void usage(int exitcode)
+static void usage(int exitcode)
{
fprintf(stderr, "usage: %s [-v] [-a]\n", name);
exit(exitcode);