summaryrefslogtreecommitdiff
path: root/lib/libedit
diff options
context:
space:
mode:
authorscottr <scottr@NetBSD.org>1997-10-20 08:07:47 +0000
committerscottr <scottr@NetBSD.org>1997-10-20 08:07:47 +0000
commit94cf43326671be278a503418bb30cf2fdf04a2d9 (patch)
tree3e1b2361747f5e13c9d9a5552a879578fa9aaa0a /lib/libedit
parentf0b760476019578eb56e0dd670349a2f6b780dd2 (diff)
Add support for DTR/CTS flow control, from Bill Studenmund.
Diffstat (limited to 'lib/libedit')
-rw-r--r--lib/libedit/tty.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/libedit/tty.c b/lib/libedit/tty.c
index 23a19dd647f..702d48070fe 100644
--- a/lib/libedit/tty.c
+++ b/lib/libedit/tty.c
@@ -1,4 +1,4 @@
-/* $NetBSD: tty.c,v 1.5 1997/10/09 19:16:04 christos Exp $ */
+/* $NetBSD: tty.c,v 1.6 1997/10/20 08:07:56 scottr Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -41,7 +41,7 @@
#if 0
static char sccsid[] = "@(#)tty.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: tty.c,v 1.5 1997/10/09 19:16:04 christos Exp $");
+__RCSID("$NetBSD: tty.c,v 1.6 1997/10/20 08:07:56 scottr Exp $");
#endif
#endif /* not lint && not SCCSID */
@@ -298,6 +298,9 @@ private ttymodes_t ttymodes[] = {
# ifdef CRTS_IFLOW
{ "crts_iflow",CRTS_IFLOW,M_CTL },
# endif /* CRTS_IFLOW */
+# ifdef CDTRCTS
+ { "cdtrcts",CDTRCTS,M_CTL },
+# endif /* CDTRCTS */
# ifdef MDMBUF
{ "mdmbuf", MDMBUF, M_CTL },
# endif /* MDMBUF */