summaryrefslogtreecommitdiffstats
path: root/sail/pl_7.c
diff options
context:
space:
mode:
authorcgd <cgd@NetBSD.org>1993-11-10 15:59:04 +0000
committercgd <cgd@NetBSD.org>1993-11-10 15:59:04 +0000
commit46f77e37976fedad0ed1ec93f4f56a6db9d3d263 (patch)
treee2342736ef1c23ade10054bb443fa96dfaebd953 /sail/pl_7.c
parent5e81f9b5b1e4055ae2b9169d499f0cfe05f8f168 (diff)
downloadbsdgames-darwin-46f77e37976fedad0ed1ec93f4f56a6db9d3d263.tar.gz
bsdgames-darwin-46f77e37976fedad0ed1ec93f4f56a6db9d3d263.tar.zst
bsdgames-darwin-46f77e37976fedad0ed1ec93f4f56a6db9d3d263.zip
new curses
Diffstat (limited to 'sail/pl_7.c')
-rw-r--r--sail/pl_7.c19
1 files changed, 1 insertions, 18 deletions
diff --git a/sail/pl_7.c b/sail/pl_7.c
index cb2bcd00..b1e0b2fe 100644
--- a/sail/pl_7.c
+++ b/sail/pl_7.c
@@ -33,7 +33,7 @@
#ifndef lint
/*static char sccsid[] = "from: @(#)pl_7.c 5.7 (Berkeley) 2/28/91";*/
-static char rcsid[] = "$Id: pl_7.c,v 1.4 1993/08/10 02:20:52 mycroft Exp $";
+static char rcsid[] = "$Id: pl_7.c,v 1.5 1993/11/10 15:59:04 cgd Exp $";
#endif /* not lint */
#include "player.h"
@@ -60,12 +60,6 @@ initscreen()
(void) leaveok(slot_w, 1);
(void) leaveok(stat_w, 1);
(void) leaveok(turn_w, 1);
-#ifdef SIGTSTP
- {
- void susp();
- (void) signal(SIGTSTP, susp);
- }
-#endif
noecho();
crmode();
}
@@ -469,14 +463,3 @@ adjustview()
else if (mf->col > viewcol + (VIEW_X - VIEW_X/8))
viewcol = mf->col - VIEW_X/8;
}
-
-#ifdef SIGTSTP
-void
-susp()
-{
- blockalarm();
- tstp(SIGTSTP);
- (void) signal(SIGTSTP, susp);
- unblockalarm();
-}
-#endif