]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hangman/prman.c
Changed deprecated curses call to new equivalent.
[bsdgames-darwin.git] / hangman / prman.c
index 2337b6390e3ddd0aad3bc92b77c3acd576fb2425..fc16408fd40904c6cfbfb72d5a7af6ece89dfd73 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: prman.c,v 1.3 1995/03/23 08:32:56 cgd Exp $    */
+/*     $NetBSD: prman.c,v 1.4 1997/10/11 01:16:39 lukem Exp $  */
 
 /*-
  * Copyright (c) 1983, 1993
  * SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
 #ifndef lint
 #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 $";
+__RCSID("$NetBSD: prman.c,v 1.4 1997/10/11 01:16:39 lukem 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;
+       int i;
 
        for (i = 0; i < Errors; i++)
                mvaddch(Err_pos[i].y, Err_pos[i].x, Err_pos[i].ch);