summaryrefslogtreecommitdiffstats
path: root/tetris/screen.c
diff options
context:
space:
mode:
Diffstat (limited to 'tetris/screen.c')
-rw-r--r--tetris/screen.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tetris/screen.c b/tetris/screen.c
index d46423a1..ce561282 100644
--- a/tetris/screen.c
+++ b/tetris/screen.c
@@ -1,4 +1,4 @@
-/* $NetBSD: screen.c,v 1.18 2003/08/07 09:37:48 agc Exp $ */
+/* $NetBSD: screen.c,v 1.19 2004/01/27 20:30:30 jsm Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -60,10 +60,10 @@ static cell curscreen[B_SIZE]; /* 1 => standout (or otherwise marked) */
static int curscore;
static int isset; /* true => terminal is in game mode */
static struct termios oldtt;
-static void (*tstp) __P((int));
+static void (*tstp)(int);
-static void scr_stop __P((int));
-static void stopset __P((int)) __attribute__((__noreturn__));
+static void scr_stop(int);
+static void stopset(int) __attribute__((__noreturn__));
/*
@@ -252,7 +252,7 @@ scr_set()
struct winsize ws;
struct termios newtt;
sigset_t sigset, osigset;
- void (*ttou) __P((int));
+ void (*ttou)(int);
sigemptyset(&sigset);
sigaddset(&sigset, SIGTSTP);