summaryrefslogtreecommitdiffstats
path: root/bcd
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 /bcd
parent5572d7c395d19f949cb8a29c96791307e744681c (diff)
downloadbsdgames-darwin-a43fb158d0c5c90291b792d683aa0221403f1893.tar.gz
bsdgames-darwin-a43fb158d0c5c90291b792d683aa0221403f1893.tar.zst
bsdgames-darwin-a43fb158d0c5c90291b792d683aa0221403f1893.zip
Remove uses of __P.
Diffstat (limited to 'bcd')
-rw-r--r--bcd/bcd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bcd/bcd.c b/bcd/bcd.c
index f88dabeb..e48b4d32 100644
--- a/bcd/bcd.c
+++ b/bcd/bcd.c
@@ -1,4 +1,4 @@
-/* $NetBSD: bcd.c,v 1.12 2003/08/07 09:37:04 agc Exp $ */
+/* $NetBSD: bcd.c,v 1.13 2004/01/27 20:30:29 jsm Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -42,7 +42,7 @@ __COPYRIGHT("@(#) Copyright (c) 1989, 1993\n\
#if 0
static char sccsid[] = "@(#)bcd.c 8.2 (Berkeley) 3/20/94";
#else
-__RCSID("$NetBSD: bcd.c,v 1.12 2003/08/07 09:37:04 agc Exp $");
+__RCSID("$NetBSD: bcd.c,v 1.13 2004/01/27 20:30:29 jsm Exp $");
#endif
#endif /* not lint */
@@ -124,8 +124,8 @@ const u_short holes[256] = {
*/
#define bit(w,i) ((w)&(1<<(i)))
-int main __P((int, char *[]));
-void printcard __P((char *));
+int main(int, char *[]);
+void printcard(char *);
int
main(argc, argv)