diff options
Diffstat (limited to 'usr.sbin/nfsd/nfsd.c')
-rw-r--r-- | usr.sbin/nfsd/nfsd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/nfsd/nfsd.c b/usr.sbin/nfsd/nfsd.c index a822eb3..d86309f 100644 --- a/usr.sbin/nfsd/nfsd.c +++ b/usr.sbin/nfsd/nfsd.c @@ -842,7 +842,7 @@ setbindhost(struct addrinfo **ai, const char *bindhost, struct addrinfo hints) } void -usage() +usage(void) { (void)fprintf(stderr, "usage: nfsd %s\n", USAGE); exit(1); @@ -868,7 +868,7 @@ reapchild(__unused int signo) } void -unregistration() +unregistration(void) { if ((!rpcb_unset(NFS_PROGRAM, 2, NULL)) || (!rpcb_unset(NFS_PROGRAM, 3, NULL))) @@ -876,7 +876,7 @@ unregistration() } void -killchildren() +killchildren(void) { int i; |