summaryrefslogtreecommitdiffstats
path: root/gomoku
diff options
context:
space:
mode:
authorperry <perry@NetBSD.org>2007-12-15 19:44:37 +0000
committerperry <perry@NetBSD.org>2007-12-15 19:44:37 +0000
commit5b76eed8435d83619f278cc1584ca5751e2804f6 (patch)
tree95b484c27260594d4e5c7b00cdcfd394d46911b1 /gomoku
parent1241b50c5ecd257030f9ddd40c9009a0a4c55ee8 (diff)
downloadbsdgames-darwin-5b76eed8435d83619f278cc1584ca5751e2804f6.tar.gz
bsdgames-darwin-5b76eed8435d83619f278cc1584ca5751e2804f6.tar.zst
bsdgames-darwin-5b76eed8435d83619f278cc1584ca5751e2804f6.zip
convert __attribute__s to applicable cdefs.h macros
Diffstat (limited to 'gomoku')
-rw-r--r--gomoku/main.c6
-rw-r--r--gomoku/pickmove.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/gomoku/main.c b/gomoku/main.c
index 6f01ed03..e707e47e 100644
--- a/gomoku/main.c
+++ b/gomoku/main.c
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.12 2004/01/27 20:30:29 jsm Exp $ */
+/* $NetBSD: main.c,v 1.13 2007/12/15 19:44:40 perry Exp $ */
/*
* Copyright (c) 1994
@@ -42,7 +42,7 @@ __COPYRIGHT("@(#) Copyright (c) 1994\n\
#if 0
static char sccsid[] = "@(#)main.c 8.4 (Berkeley) 5/4/95";
#else
-__RCSID("$NetBSD: main.c,v 1.12 2004/01/27 20:30:29 jsm Exp $");
+__RCSID("$NetBSD: main.c,v 1.13 2007/12/15 19:44:40 perry Exp $");
#endif
#endif /* not lint */
@@ -532,7 +532,7 @@ quit()
void
quitsig(dummy)
- int dummy __attribute__((__unused__));
+ int dummy __unused;
{
quit();
}
diff --git a/gomoku/pickmove.c b/gomoku/pickmove.c
index 4360143c..98c8fa4c 100644
--- a/gomoku/pickmove.c
+++ b/gomoku/pickmove.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pickmove.c,v 1.11 2004/01/27 20:26:20 jsm Exp $ */
+/* $NetBSD: pickmove.c,v 1.12 2007/12/15 19:44:40 perry Exp $ */
/*
* Copyright (c) 1994
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)pickmove.c 8.2 (Berkeley) 5/3/95";
#else
-__RCSID("$NetBSD: pickmove.c,v 1.11 2004/01/27 20:26:20 jsm Exp $");
+__RCSID("$NetBSD: pickmove.c,v 1.12 2007/12/15 19:44:40 perry Exp $");
#endif
#endif /* not lint */
@@ -1050,7 +1050,7 @@ updatecombo(cbp, color)
void
appendcombo(cbp, color)
struct combostr *cbp;
- int color __attribute__((__unused__));
+ int color __unused;
{
struct combostr *pcbp, *ncbp;