summaryrefslogtreecommitdiffstats
path: root/boggle
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 /boggle
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 'boggle')
-rw-r--r--boggle/boggle/mach.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/boggle/boggle/mach.c b/boggle/boggle/mach.c
index b88a5b07..e8a481c2 100644
--- a/boggle/boggle/mach.c
+++ b/boggle/boggle/mach.c
@@ -1,4 +1,4 @@
-/* $NetBSD: mach.c,v 1.16 2006/08/09 14:29:40 christos Exp $ */
+/* $NetBSD: mach.c,v 1.17 2007/12/15 19:44:39 perry Exp $ */
/*-
* Copyright (c) 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)mach.c 8.1 (Berkeley) 6/11/93";
#else
-__RCSID("$NetBSD: mach.c,v 1.16 2006/08/09 14:29:40 christos Exp $");
+__RCSID("$NetBSD: mach.c,v 1.17 2007/12/15 19:44:39 perry Exp $");
#endif
#endif /* not lint */
@@ -577,7 +577,7 @@ tty_setup(void)
}
static void
-stop_catcher(int signo __attribute__((__unused__)))
+stop_catcher(int signo __unused)
{
sigset_t isigset, osigset;
@@ -597,7 +597,7 @@ stop_catcher(int signo __attribute__((__unused__)))
}
static void
-cont_catcher(int signo __attribute__((__unused__)))
+cont_catcher(int signo __unused)
{
noecho();
raw();
@@ -612,7 +612,7 @@ cont_catcher(int signo __attribute__((__unused__)))
* It would mean reformatting the entire display
*/
static void
-winch_catcher(int signo __attribute__((__unused__)))
+winch_catcher(int signo __unused)
{
struct winsize win;