summaryrefslogtreecommitdiffstats
path: root/canfield
diff options
context:
space:
mode:
authorjsm <jsm@NetBSD.org>2004-01-27 20:30:28 +0000
committerjsm <jsm@NetBSD.org>2004-01-27 20:30:28 +0000
commita43fb158d0c5c90291b792d683aa0221403f1893 (patch)
treeabc8b57813f81300bc2b7a4ad80223e666d05d7d /canfield
parent5572d7c395d19f949cb8a29c96791307e744681c (diff)
downloadbsdgames-darwin-a43fb158d0c5c90291b792d683aa0221403f1893.tar.gz
bsdgames-darwin-a43fb158d0c5c90291b792d683aa0221403f1893.tar.zst
bsdgames-darwin-a43fb158d0c5c90291b792d683aa0221403f1893.zip
Remove uses of __P.
Diffstat (limited to 'canfield')
-rw-r--r--canfield/canfield/canfield.c98
-rw-r--r--canfield/cfscores/cfscores.c8
2 files changed, 53 insertions, 53 deletions
diff --git a/canfield/canfield/canfield.c b/canfield/canfield/canfield.c
index 2c1eb98a..5b838be5 100644
--- a/canfield/canfield/canfield.c
+++ b/canfield/canfield/canfield.c
@@ -1,4 +1,4 @@
-/* $NetBSD: canfield.c,v 1.18 2003/08/07 09:37:07 agc Exp $ */
+/* $NetBSD: canfield.c,v 1.19 2004/01/27 20:30:29 jsm Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
#if 0
static char sccsid[] = "@(#)canfield.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: canfield.c,v 1.18 2003/08/07 09:37:07 agc Exp $");
+__RCSID("$NetBSD: canfield.c,v 1.19 2004/01/27 20:30:29 jsm Exp $");
#endif
#endif /* not lint */
@@ -198,53 +198,53 @@ bool startedgame = FALSE, infullgame = FALSE;
time_t acctstart;
int dbfd = -1;
-void askquit __P((int));
-void cleanup __P((int)) __attribute__((__noreturn__));
-void cleanupboard __P((void));
-void clearabovemovebox __P((void));
-void clearbelowmovebox __P((void));
-void clearmsg __P((void));
-void clearstat __P((void));
-void destinerror __P((void));
-bool diffcolor __P((const struct cardtype *, const struct cardtype *));
-void dumberror __P((void));
-bool finish __P((void));
-void fndbase __P((struct cardtype **, int, int));
-void getcmd __P((int, int, const char *));
-void initall __P((void));
-void initdeck __P((struct cardtype *[]));
-void initgame __P((void));
-void instruct __P((void));
-int main __P((void));
-void makeboard __P((void));
-void movebox __P((void));
-void movecard __P((void));
-void movetofound __P((struct cardtype **, int));
-void movetotalon __P((void));
-bool notempty __P((const struct cardtype *));
-void printbottombettingbox __P((void));
-void printbottominstructions __P((void));
-void printcard __P((int, int, const struct cardtype *));
-void printrank __P((int, int, const struct cardtype *, bool));
-void printtopbettingbox __P((void));
-void printtopinstructions __P((void));
-bool rankhigher __P((const struct cardtype *, int));
-bool ranklower __P((const struct cardtype *, const struct cardtype *));
-void removecard __P((int, int));
-int samesuit __P((const struct cardtype *, int));
-void showcards __P((void));
-void showstat __P((void));
-void shuffle __P((struct cardtype *[]));
-void simpletableau __P((struct cardtype **, int));
-void startgame __P((void));
-void suspend __P((void));
-bool tabok __P((const struct cardtype *, int));
-void tabprint __P((int, int));
-void tabtotab __P((int, int));
-void transit __P((struct cardtype **, struct cardtype **));
-void updatebettinginfo __P((void));
-void usedstock __P((void));
-void usedtalon __P((void));
+void askquit(int);
+void cleanup(int) __attribute__((__noreturn__));
+void cleanupboard(void);
+void clearabovemovebox(void);
+void clearbelowmovebox(void);
+void clearmsg(void);
+void clearstat(void);
+void destinerror(void);
+bool diffcolor(const struct cardtype *, const struct cardtype *);
+void dumberror(void);
+bool finish(void);
+void fndbase(struct cardtype **, int, int);
+void getcmd(int, int, const char *);
+void initall(void);
+void initdeck(struct cardtype *[]);
+void initgame(void);
+void instruct(void);
+int main(void);
+void makeboard(void);
+void movebox(void);
+void movecard(void);
+void movetofound(struct cardtype **, int);
+void movetotalon(void);
+bool notempty(const struct cardtype *);
+void printbottombettingbox(void);
+void printbottominstructions(void);
+void printcard(int, int, const struct cardtype *);
+void printrank(int, int, const struct cardtype *, bool);
+void printtopbettingbox(void);
+void printtopinstructions(void);
+bool rankhigher(const struct cardtype *, int);
+bool ranklower(const struct cardtype *, const struct cardtype *);
+void removecard(int, int);
+int samesuit(const struct cardtype *, int);
+void showcards(void);
+void showstat(void);
+void shuffle(struct cardtype *[]);
+void simpletableau(struct cardtype **, int);
+void startgame(void);
+void suspend(void);
+bool tabok(const struct cardtype *, int);
+void tabprint(int, int);
+void tabtotab(int, int);
+void transit(struct cardtype **, struct cardtype **);
+void updatebettinginfo(void);
+void usedstock(void);
+void usedtalon(void);
/*
* The following procedures print the board onto the screen using the
diff --git a/canfield/cfscores/cfscores.c b/canfield/cfscores/cfscores.c
index 3feda151..aa9afa0b 100644
--- a/canfield/cfscores/cfscores.c
+++ b/canfield/cfscores/cfscores.c
@@ -1,4 +1,4 @@
-/* $NetBSD: cfscores.c,v 1.11 2003/08/07 09:37:08 agc Exp $ */
+/* $NetBSD: cfscores.c,v 1.12 2004/01/27 20:30:29 jsm Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1983, 1993\n\
#if 0
static char sccsid[] = "@(#)cfscores.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: cfscores.c,v 1.11 2003/08/07 09:37:08 agc Exp $");
+__RCSID("$NetBSD: cfscores.c,v 1.12 2004/01/27 20:30:29 jsm Exp $");
#endif
#endif /* not lint */
@@ -66,8 +66,8 @@ struct betinfo {
int dbfd;
-int main __P((int, char *[]));
-void printuser __P((const struct passwd *, int));
+int main(int, char *[]);
+void printuser(const struct passwd *, int);
int
main(argc, argv)