diff options
author | 2003-06-10 22:20:44 +0000 | |
---|---|---|
committer | 2003-06-10 22:20:44 +0000 | |
commit | 1837a5ca509d93cac77d2e89322c0c4869f9215d (patch) | |
tree | 52dbe14a25e44bdf8161f4c51f39a50c072fe221 /usr.bin/tail/misc.c | |
parent | It would kind of help if the flags member was initialized, otherwise random (diff) | |
download | wireguard-openbsd-1837a5ca509d93cac77d2e89322c0c4869f9215d.tar.xz wireguard-openbsd-1837a5ca509d93cac77d2e89322c0c4869f9215d.zip |
mostly ansi cleanup; pval ok
Diffstat (limited to 'usr.bin/tail/misc.c')
-rw-r--r-- | usr.bin/tail/misc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/tail/misc.c b/usr.bin/tail/misc.c index 0650d590cb8..fd9849a5e03 100644 --- a/usr.bin/tail/misc.c +++ b/usr.bin/tail/misc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: misc.c,v 1.5 2003/06/03 02:56:17 millert Exp $ */ +/* $OpenBSD: misc.c,v 1.6 2003/06/10 22:20:52 deraadt Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -36,7 +36,7 @@ #if 0 static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: misc.c,v 1.5 2003/06/03 02:56:17 millert Exp $"; +static char rcsid[] = "$OpenBSD: misc.c,v 1.6 2003/06/10 22:20:52 deraadt Exp $"; #endif #endif /* not lint */ @@ -51,7 +51,7 @@ static char rcsid[] = "$OpenBSD: misc.c,v 1.5 2003/06/03 02:56:17 millert Exp $" #include "extern.h" void -ierr() +ierr(void) { warn("%s", fname); @@ -59,7 +59,7 @@ ierr() } void -oerr() +oerr(void) { err(1, "stdout"); |