summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorcgd <cgd@NetBSD.org>1994-03-18 04:08:46 +0000
committercgd <cgd@NetBSD.org>1994-03-18 04:08:46 +0000
commit34a87e22d2f6349e8f41007158fbe7242e86c06f (patch)
tree1548ff3e5958d7a08959489d6146cfa31a61cc12 /include
parentb1b4713e3b3b4490b64eabfeed62676300f40575 (diff)
update to match flags
Diffstat (limited to 'include')
-rw-r--r--include/ttyent.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/ttyent.h b/include/ttyent.h
index 2a01f0d3b2b..2f72ffa6e3d 100644
--- a/include/ttyent.h
+++ b/include/ttyent.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)ttyent.h 5.7 (Berkeley) 4/3/91
- * $Id: ttyent.h,v 1.3 1994/03/12 06:39:08 cgd Exp $
+ * $Id: ttyent.h,v 1.4 1994/03/18 04:08:46 cgd Exp $
*/
#ifndef _TTYENT_H_
@@ -46,6 +46,7 @@
#define _TTYS_LOCAL "local"
#define _TTYS_RTSCTS "rtscts"
#define _TTYS_SOFTCAR "softcar"
+#define _TTYS_MDMBUF "mdmbuf"
struct ttyent {
char *ty_name; /* terminal device name */
@@ -55,7 +56,8 @@ struct ttyent {
#define TTY_SECURE 0x02 /* allow uid of 0 to login */
#define TTY_LOCAL 0x04 /* set 'CLOCAL' on open (dev. specific) */
#define TTY_RTSCTS 0x08 /* set 'CRTSCTS' on open (dev. specific) */
-#define TTY_SOFTCAR 0x10 /* ignore hardware carrier (dev. specific) */
+#define TTY_SOFTCAR 0x10 /* ignore hardware carrier (dev. spec.) */
+#define TTY_MDMBUF 0x20 /* set 'MDMBUF' on open (dev. specific) */
int ty_status; /* status flags */
char *ty_window; /* command to start up window manager */
char *ty_comment; /* comment field */