diff options
author | Paul Janzen <pjanzen@cvs.openbsd.org> | 1998-08-19 07:42:28 +0000 |
---|---|---|
committer | Paul Janzen <pjanzen@cvs.openbsd.org> | 1998-08-19 07:42:28 +0000 |
commit | ed884b9fa4509c09f0f7ab71efe57a4e83a2e055 (patch) | |
tree | ef9d859a0754785b42ea5cacb27aff54b5000315 /games/hangman/prman.c | |
parent | f4fc9566a4d35c0cc2bf8c7f1136287d8eec8c44 (diff) |
tags, formatting, ANSI-fication, prototypes, de-typos, and the occasional
initialization, removal of unused variable, or other minor fix. Most
changes are from or inspired by NetBSD.
Diffstat (limited to 'games/hangman/prman.c')
-rw-r--r-- | games/hangman/prman.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/games/hangman/prman.c b/games/hangman/prman.c index 2337b6390e3..5908d6b1a9c 100644 --- a/games/hangman/prman.c +++ b/games/hangman/prman.c @@ -1,3 +1,4 @@ +/* $OpenBSD: prman.c,v 1.2 1998/08/19 07:40:42 pjanzen Exp $ */ /* $NetBSD: prman.c,v 1.3 1995/03/23 08:32:56 cgd Exp $ */ /*- @@ -37,17 +38,18 @@ #if 0 static char sccsid[] = "@(#)prman.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$NetBSD: prman.c,v 1.3 1995/03/23 08:32:56 cgd Exp $"; +static char rcsid[] = "$OpenBSD: prman.c,v 1.2 1998/08/19 07:40:42 pjanzen Exp $"; #endif #endif /* not lint */ -# include "hangman.h" +#include "hangman.h" /* * prman: * Print out the man appropriately for the give number * of incorrect guesses. */ +void prman() { register int i; |