summaryrefslogtreecommitdiff
path: root/usr.bin/telnet/terminal.c
diff options
context:
space:
mode:
authorFrederic Cambus <fcambus@cvs.openbsd.org>2017-07-07 09:14:27 +0000
committerFrederic Cambus <fcambus@cvs.openbsd.org>2017-07-07 09:14:27 +0000
commit8d062d956306c860ab0cccbb14064af5b9638bd4 (patch)
tree7d913c8497a994da3a14c6f80427b7d829ce741a /usr.bin/telnet/terminal.c
parent3c72809ef1b90b0e1c6786bfd3311f3c9bc21995 (diff)
Remove unnecessary #ifdefs in telnet. No binary change.
OK deraadt@, tedu@
Diffstat (limited to 'usr.bin/telnet/terminal.c')
-rw-r--r--usr.bin/telnet/terminal.c30
1 files changed, 1 insertions, 29 deletions
diff --git a/usr.bin/telnet/terminal.c b/usr.bin/telnet/terminal.c
index 5f6ca213226..7e8110d8906 100644
--- a/usr.bin/telnet/terminal.c
+++ b/usr.bin/telnet/terminal.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: terminal.c,v 1.13 2014/07/22 07:30:24 jsg Exp $ */
+/* $OpenBSD: terminal.c,v 1.14 2017/07/07 09:14:26 fcambus Exp $ */
/* $NetBSD: terminal.c,v 1.5 1996/02/28 21:04:17 thorpej Exp $ */
/*
@@ -41,34 +41,6 @@ unsigned char ttyobuf[2*BUFSIZ], ttyibuf[BUFSIZ];
int termdata; /* Debugging flag */
-# ifndef VDISCARD
-cc_t termFlushChar;
-# endif
-# ifndef VLNEXT
-cc_t termLiteralNextChar;
-# endif
-# ifndef VWERASE
-cc_t termWerasChar;
-# endif
-# ifndef VREPRINT
-cc_t termRprntChar;
-# endif
-# ifndef VSTART
-cc_t termStartChar;
-# endif
-# ifndef VSTOP
-cc_t termStopChar;
-# endif
-# ifndef VEOL
-cc_t termForw1Char;
-# endif
-# ifndef VEOL2
-cc_t termForw2Char;
-# endif
-# ifndef VSTATUS
-cc_t termAytChar;
-# endif
-
/*
* initialize the terminal data structures.
*/