diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-09-23 04:10:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-09-23 04:10:15 +0000 |
commit | 5b9dbaee0efeaf013f1e71dca96cd3d56c7f4d85 (patch) | |
tree | 3b24dfaa3185c3c5e16980d07b08585154d1acd4 /usr.bin/strings | |
parent | e5c537e48a40d69509c6f79c53a8eb9d80ea3ef7 (diff) |
Add missing includes, breaks and semicolons to appease gcc3; David Krause
deraadt@ OK
Diffstat (limited to 'usr.bin/strings')
-rw-r--r-- | usr.bin/strings/strings.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/strings/strings.c b/usr.bin/strings/strings.c index 52812d9cd33..5ab6a58f6ff 100644 --- a/usr.bin/strings/strings.c +++ b/usr.bin/strings/strings.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strings.c,v 1.7 2002/02/16 21:27:53 millert Exp $ */ +/* $OpenBSD: strings.c,v 1.8 2002/09/23 04:10:14 millert Exp $ */ /* $NetBSD: strings.c,v 1.7 1995/02/15 15:49:19 jtc Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)strings.c 8.2 (Berkeley) 1/28/94"; #endif -static char rcsid[] = "$OpenBSD: strings.c,v 1.7 2002/02/16 21:27:53 millert Exp $"; +static char rcsid[] = "$OpenBSD: strings.c,v 1.8 2002/09/23 04:10:14 millert Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -244,6 +244,7 @@ start: putchar((char)ch); putchar('\n'); out: + ; } cnt = 0; } |