summaryrefslogtreecommitdiffstats
path: root/hunt/hunt/playit.c
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2009-07-04 07:51:34 +0000
committerdholland <dholland@NetBSD.org>2009-07-04 07:51:34 +0000
commit1f35120ec096783ec21160ac00f22c0fb221a918 (patch)
treebd2d8e2eb38813444936bb8840bfa2cd94dc7bb2 /hunt/hunt/playit.c
parent2e8daf459306ea1d8374438d469f60aa0149aa32 (diff)
downloadbsdgames-darwin-1f35120ec096783ec21160ac00f22c0fb221a918.tar.gz
bsdgames-darwin-1f35120ec096783ec21160ac00f22c0fb221a918.tar.zst
bsdgames-darwin-1f35120ec096783ec21160ac00f22c0fb221a918.zip
Remove config options for 4.2BSD and 4.3BSD, and associated code. Highly
obsolete, and I doubt most of it still worked anyway.
Diffstat (limited to 'hunt/hunt/playit.c')
-rw-r--r--hunt/hunt/playit.c32
1 files changed, 4 insertions, 28 deletions
diff --git a/hunt/hunt/playit.c b/hunt/hunt/playit.c
index da35d564..f7415d93 100644
--- a/hunt/hunt/playit.c
+++ b/hunt/hunt/playit.c
@@ -1,4 +1,4 @@
-/* $NetBSD: playit.c,v 1.13 2009/07/04 07:10:23 dholland Exp $ */
+/* $NetBSD: playit.c,v 1.14 2009/07/04 07:51:34 dholland Exp $ */
/*
* Copyright (c) 1983-2003, Regents of the University of California.
* All rights reserved.
@@ -32,7 +32,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: playit.c,v 1.13 2009/07/04 07:10:23 dholland Exp $");
+__RCSID("$NetBSD: playit.c,v 1.14 2009/07/04 07:51:34 dholland Exp $");
#endif /* not lint */
#include <sys/file.h>
@@ -42,10 +42,8 @@ __RCSID("$NetBSD: playit.c,v 1.13 2009/07/04 07:10:23 dholland Exp $");
#include <curses.h>
#include <ctype.h>
#include <signal.h>
-#if defined(HPUX) || (defined(BSD_RELEASE) && BSD_RELEASE >= 44)
#include <termios.h>
#include <unistd.h>
-#endif
#include "hunt.h"
#ifndef FREAD
@@ -77,10 +75,6 @@ static unsigned char ibuf[256], *iptr = ibuf;
#define GETCHR() (--icnt < 0 ? getchr() : *iptr++)
-#if !defined(BSD_RELEASE) || BSD_RELEASE < 44
-extern int _putchar();
-#endif
-
static unsigned char getchr(void);
static void send_stuff(void);
@@ -160,15 +154,7 @@ playit(void)
case READY:
refresh();
if (nchar_send < 0)
-#if defined(HPUX) || (defined(BSD_RELEASE) && BSD_RELEASE >= 44)
tcflush(STDIN, TCIFLUSH);
-#else
-#ifndef TCFLSH
- (void) ioctl(STDIN, TIOCFLUSH, &in);
-#else
- (void) ioctl(STDIN, TCFLSH, 0);
-#endif
-#endif
nchar_send = MAX_SEND;
#ifndef OTTO
(void) GETCHR();
@@ -348,12 +334,7 @@ get_message:
refresh();
if ((ch = getchar()) == '\n' || ch == '\r')
break;
-#if BSD_RELEASE >= 44
- if (ch == erasechar())
-#else
- if (ch == _tty.sg_erase)
-#endif
- {
+ if (ch == erasechar()) {
if (cp > buf) {
int y, x;
getyx(stdscr, y, x);
@@ -363,12 +344,7 @@ get_message:
}
continue;
}
-#if BSD_RELEASE >= 44
- else if (ch == killchar())
-#else
- else if (ch == _tty.sg_kill)
-#endif
- {
+ else if (ch == killchar()) {
int y, x;
getyx(stdscr, y, x);
move(y, x - (cp - buf));