Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/vacation Add some missing voids.



details:   https://anonhg.NetBSD.org/src/rev/30b82b3a221b
branches:  trunk
changeset: 543177:30b82b3a221b
user:      perry <perry%NetBSD.org@localhost>
date:      Tue Feb 18 19:21:33 2003 +0000

description:
Add some missing voids.

diffstat:

 usr.bin/vacation/vacation.c |  14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diffs (63 lines):

diff -r e5c356d8bfd4 -r 30b82b3a221b usr.bin/vacation/vacation.c
--- a/usr.bin/vacation/vacation.c       Tue Feb 18 18:47:06 2003 +0000
+++ b/usr.bin/vacation/vacation.c       Tue Feb 18 19:21:33 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vacation.c,v 1.19 2001/01/10 23:15:42 lukem Exp $      */
+/*     $NetBSD: vacation.c,v 1.20 2003/02/18 19:21:33 perry Exp $      */
 
 /*
  * Copyright (c) 1983, 1987, 1993
@@ -44,7 +44,7 @@
 #if 0
 static char sccsid[] = "@(#)vacation.c 8.2 (Berkeley) 1/26/94";
 #endif
-__RCSID("$NetBSD: vacation.c,v 1.19 2001/01/10 23:15:42 lukem Exp $");
+__RCSID("$NetBSD: vacation.c,v 1.20 2003/02/18 19:21:33 perry Exp $");
 #endif /* not lint */
 
 /*
@@ -199,7 +199,7 @@
  *     read mail headers
  */
 void
-readheaders()
+readheaders(void)
 {
        alias_t *cur;
        char *p;
@@ -283,7 +283,7 @@
  *     read the header and return if automagic/junk/bulk/list mail
  */
 int
-junkmail()
+junkmail(void)
 {
        static struct ignore {
                char    *name;
@@ -332,7 +332,7 @@
  *     use memmove for machines with alignment restrictions
  */
 int
-recent()
+recent(void)
 {
        DBT key, data;
        time_t then, next;
@@ -378,7 +378,7 @@
  *     store that this user knows about the vacation.
  */
 void
-setreply()
+setreply(void)
 {
        DBT key, data;
        time_t now;
@@ -438,7 +438,7 @@
 }
 
 void
-usage()
+usage(void)
 {
 
        syslog(LOG_ERR, "uid %u: usage: vacation [-i] [-a alias] login",



Home | Main Index | Thread Index | Old Index