diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-17 19:42:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-17 19:42:41 +0000 |
commit | d522f6eb0324008023fed0be4d046f3fc51b0356 (patch) | |
tree | 9ecf8345e3c3ff77a81ef2a20d84c6497533e804 /games/battlestar | |
parent | 1b433a7e5b43fe0dec72e100525e31299629c117 (diff) |
Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)
Diffstat (limited to 'games/battlestar')
-rw-r--r-- | games/battlestar/cypher.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/battlestar/cypher.c b/games/battlestar/cypher.c index 38ee010e196..926f79be8e0 100644 --- a/games/battlestar/cypher.c +++ b/games/battlestar/cypher.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cypher.c,v 1.12 2000/09/26 04:42:56 pjanzen Exp $ */ +/* $OpenBSD: cypher.c,v 1.13 2002/02/17 19:42:20 millert Exp $ */ /* $NetBSD: cypher.c,v 1.3 1995/03/21 15:07:15 cgd Exp $ */ /* @@ -38,14 +38,14 @@ #if 0 static char sccsid[] = "@(#)cypher.c 8.2 (Berkeley) 4/28/95"; #else -static char rcsid[] = "$OpenBSD: cypher.c,v 1.12 2000/09/26 04:42:56 pjanzen Exp $"; +static char rcsid[] = "$OpenBSD: cypher.c,v 1.13 2002/02/17 19:42:20 millert Exp $"; #endif #endif /* not lint */ #include "extern.h" #include "pathnames.h" -static void verb_with_all __P((unsigned int *, int, int (*)(void), const char *)); +static void verb_with_all(unsigned int *, int, int (*)(void), const char *); /* returns 0 if error or no more commands to do, * 1 if there are more commands remaining on the current input line |