Thu Dec 11 11:30:29 CST 2008 Pekka Pessi <first.last@nokia.com>

* su/addrinfo.c, su/localinfo.c: made usage() static
  
  Make -Wmissing-prototypes happy.



git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10812 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2008-12-16 19:50:56 +00:00
parent 6470214c1f
commit 8663f5a44c
3 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
Tue Dec 16 13:48:18 CST 2008
Tue Dec 16 13:50:36 CST 2008

View File

@ -84,7 +84,7 @@ char const help[] =
int getopt(int argc, char * const argv[], char const *opstring);
extern int optind;
void usage(void)
static void usage(void)
{
fputs(help, stderr);
exit(1);

View File

@ -110,7 +110,7 @@ char const help[] =
int getopt(int argc, char * const argv[], char const *opstring);
extern int optind;
void usage(int returncode)
static void usage(int returncode)
{
fputs(help, stderr);
exit(returncode);