Use prototype. While I'm there, add a pair of parenthesis to mark an if

statment's border.

MFC after:	1 month
This commit is contained in:
Xin LI 2011-07-14 07:28:49 +00:00
parent eff1a1bc13
commit 07de1c52db
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=224001
5 changed files with 8 additions and 7 deletions

View file

@ -54,7 +54,7 @@
static rpcb_stat_byvers inf;
void
rpcbs_init()
rpcbs_init(void)
{
}

View file

@ -1076,7 +1076,7 @@ netbuffree(struct netbuf *ap)
extern bool_t __svc_clean_idle(fd_set *, int, bool_t);
void
my_svc_run()
my_svc_run(void)
{
size_t nfds;
struct pollfd pollfds[FD_SETSIZE];

View file

@ -178,12 +178,13 @@ main(int argc, char *argv[])
init_transport(nconf);
while ((nconf = getnetconfig(nc_handle))) {
if (nconf->nc_flag & NC_VISIBLE)
if (nconf->nc_flag & NC_VISIBLE) {
if (ipv6_only == 1 && strcmp(nconf->nc_protofmly,
"inet") == 0) {
/* DO NOTHING */
} else
init_transport(nconf);
}
}
endnetconfig(nc_handle);
@ -766,7 +767,7 @@ terminate(int dummy __unused)
}
void
rpcbind_abort()
rpcbind_abort(void)
{
#ifdef WARMSTART
write_warmstart(); /* Dump yourself */

View file

@ -283,7 +283,7 @@ addrmerge(struct netbuf *caller, char *serv_uaddr, char *clnt_uaddr,
}
void
network_init()
network_init(void)
{
#ifdef INET6
struct ifaddrs *ifap, *ifp;

View file

@ -142,7 +142,7 @@ error: fprintf(stderr, "rpcbind: will start from scratch\n");
}
void
write_warmstart()
write_warmstart(void)
{
(void) write_struct(RPCBFILE, (xdrproc_t)xdr_rpcblist_ptr, &list_rbl);
#ifdef PORTMAP
@ -152,7 +152,7 @@ write_warmstart()
}
void
read_warmstart()
read_warmstart(void)
{
rpcblist_ptr tmp_rpcbl = NULL;
#ifdef PORTMAP