diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2002-02-26 07:31:53 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2002-02-26 07:31:53 +0000 |
commit | 28a98df7c55a76fb309791f83b3293e95c5e5b78 (patch) | |
tree | 5d0e1b61a3e8fffe85566c18537dfa1bad363433 /usr.bin/yes | |
parent | 2dfd675ffbb5a4476bcd9a260c9a6624a2ecd1bc (diff) |
KNF; from Dennis Schwarz <denniss@hoofbite.net>; closes pr#2432
Diffstat (limited to 'usr.bin/yes')
-rw-r--r-- | usr.bin/yes/yes.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/yes/yes.c b/usr.bin/yes/yes.c index 79cde09abf8..c510da5d72e 100644 --- a/usr.bin/yes/yes.c +++ b/usr.bin/yes/yes.c @@ -1,4 +1,4 @@ -/* $OpenBSD: yes.c,v 1.3 1999/08/16 19:30:08 art Exp $ */ +/* $OpenBSD: yes.c,v 1.4 2002/02/26 07:31:52 todd Exp $ */ /* $NetBSD: yes.c,v 1.3 1994/11/14 04:56:15 jtc Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)yes.c 8.1 (Berkeley) 6/6/93"; #endif -static char rcsid[] = "$OpenBSD: yes.c,v 1.3 1999/08/16 19:30:08 art Exp $"; +static char rcsid[] = "$OpenBSD: yes.c,v 1.4 2002/02/26 07:31:52 todd Exp $"; #endif /* not lint */ #include <stdio.h> @@ -55,7 +55,7 @@ main(argc, argv) char **argv; { if (argc > 1) - for(;;) + for (;;) puts(argv[1]); else for (;;) puts("y"); |