summaryrefslogtreecommitdiff
path: root/games/hangman
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
commit6d57a1a176004a7d8fc009cdcf760098f86e3263 (patch)
treeee423c619fad03813234b9362694a17f3a638f0b /games/hangman
parentc707cb295fc3cac8d8feb343e949e0dcf71b8476 (diff)
Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
Diffstat (limited to 'games/hangman')
-rw-r--r--games/hangman/hangman.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/games/hangman/hangman.h b/games/hangman/hangman.h
index 7d3f7713683..127b457d721 100644
--- a/games/hangman/hangman.h
+++ b/games/hangman/hangman.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: hangman.h,v 1.4 1999/09/25 20:51:53 pjanzen Exp $ */
+/* $OpenBSD: hangman.h,v 1.5 2002/02/16 21:27:10 millert Exp $ */
/* $NetBSD: hangman.h,v 1.5 1995/04/24 12:23:44 cgd Exp $ */
/*
@@ -89,13 +89,13 @@ extern FILE *Dict;
extern off_t Dict_size;
-void die __P((int));
-void endgame __P((void));
-void getguess __P((void));
-void getword __P((void));
-void playgame __P((void));
-void prdata __P((void));
-void prman __P((void));
-void prword __P((void));
-int readch __P((void));
-void setup __P((void));
+void die(int);
+void endgame(void);
+void getguess(void);
+void getword(void);
+void playgame(void);
+void prdata(void);
+void prman(void);
+void prword(void);
+int readch(void);
+void setup(void);