diff options
author | Jason Peel <jsyn@cvs.openbsd.org> | 2002-08-09 20:26:46 +0000 |
---|---|---|
committer | Jason Peel <jsyn@cvs.openbsd.org> | 2002-08-09 20:26:46 +0000 |
commit | 54a23347d56b87c53dd8654f4cf7b36636058de4 (patch) | |
tree | 5e796e589a8555012d5b5da90fecaa1f0d667f78 /games/rogue/score.c | |
parent | 42a64f030f357b477574f94ce6ddfda32d9c8f4e (diff) |
Get rid of remaining __P usage (except for imported code);
ok millert@, rogue ok pjanzen@
Diffstat (limited to 'games/rogue/score.c')
-rw-r--r-- | games/rogue/score.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/games/rogue/score.c b/games/rogue/score.c index e99f9ab2ab0..d4febaaf46e 100644 --- a/games/rogue/score.c +++ b/games/rogue/score.c @@ -1,4 +1,4 @@ -/* $OpenBSD: score.c,v 1.8 2002/07/18 07:13:57 pjanzen Exp $ */ +/* $OpenBSD: score.c,v 1.9 2002/08/09 20:26:44 jsyn Exp $ */ /* $NetBSD: score.c,v 1.5 1995/04/22 10:28:26 cgd Exp $ */ /* @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)score.c 8.1 (Berkeley) 5/31/93"; #else -static const char rcsid[] = "$OpenBSD: score.c,v 1.8 2002/07/18 07:13:57 pjanzen Exp $"; +static const char rcsid[] = "$OpenBSD: score.c,v 1.9 2002/08/09 20:26:44 jsyn Exp $"; #endif #endif /* not lint */ @@ -229,11 +229,11 @@ struct score_entry { char nickname[MAX_OPT_LEN + 1]; }; -static void pad_spaces __P((char *, size_t)); +static void pad_spaces(char *, size_t); static void unpad_spaces(char *); -static int read_score_entry __P((struct score_entry *, FILE *)); -static void write_score_entry __P((const struct score_entry *, int, FILE *)); -static void make_score __P((struct score_entry *, const object *, int)); +static int read_score_entry(struct score_entry *, FILE *); +static void write_score_entry(const struct score_entry *, int, FILE *); +static void make_score(struct score_entry *, const object *, int); static void |