don't bother resolving onbld python module deps
[unleashed.git] / bin / ksh / tty.h
blob29c6e8f7164d070a2c1aac38226fec275cbb61ca
1 /* $OpenBSD: tty.h,v 1.6 2015/09/25 11:58:14 nicm Exp $ */
3 /*
4 tty.h -- centralized definitions for a variety of terminal interfaces
6 created by DPK, Oct. 1986
8 Rearranged to work with autoconf, added TTY_state, get_tty/set_tty
9 Michael Rendell, May '94
11 last edit: 30-Jul-1987 D A Gwyn
14 #include <termios.h>
16 extern int tty_fd; /* dup'd tty file descriptor */
17 extern int tty_devtty; /* true if tty_fd is from /dev/tty */
18 extern struct termios tty_state; /* saved tty state */
20 extern void tty_init(int);
21 extern void tty_close(void);