diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-07-09 15:59:27 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-07-09 15:59:27 +0000 |
commit | c1b01e7eebe1d3206f4204776b105318b0b7b8bc (patch) | |
tree | 940af30a6f1a9912227868afece1c2d1b1091dff /games/canfield/cfscores/cfscores.c | |
parent | fe859c06cf60db912ac03d66f1dc8d70b91bd189 (diff) |
ansi; khalek@linuxgamers.net
Diffstat (limited to 'games/canfield/cfscores/cfscores.c')
-rw-r--r-- | games/canfield/cfscores/cfscores.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/games/canfield/cfscores/cfscores.c b/games/canfield/cfscores/cfscores.c index 2fd2559ce5b..177f5c2caa2 100644 --- a/games/canfield/cfscores/cfscores.c +++ b/games/canfield/cfscores/cfscores.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cfscores.c,v 1.11 2003/07/10 00:03:01 david Exp $ */ +/* $OpenBSD: cfscores.c,v 1.12 2004/07/09 15:59:26 deraadt Exp $ */ /* $NetBSD: cfscores.c,v 1.3 1995/03/21 15:08:37 cgd Exp $ */ /* @@ -40,7 +40,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)cfscores.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: cfscores.c,v 1.11 2003/07/10 00:03:01 david Exp $"; +static char rcsid[] = "$OpenBSD: cfscores.c,v 1.12 2004/07/09 15:59:26 deraadt Exp $"; #endif #endif /* not lint */ @@ -70,9 +70,7 @@ int dbfd; void printuser(const struct passwd *, int); int -main(argc, argv) - int argc; - char *argv[]; +main(int argc, char *argv[]) { struct passwd *pw; int uid; @@ -118,9 +116,7 @@ main(argc, argv) * print out info for specified password entry */ void -printuser(pw, printfail) - const struct passwd *pw; - int printfail; +printuser(const struct passwd *pw, int printfail) { struct betinfo total; int i; |