foreground and background windows
[unix-history] / usr / src / include / sgtty.h
CommitLineData
b416799e
SL
1/* sgtty.h 4.1 83/05/03 */
2
3/*
4 * Structure for stty and gtty system calls.
5 */
6
7#ifndef _IOCTL_
8#include <sys/ioctl.h>
9#endif
10
11#ifndef _SGTTYB_
12#define _SGTTYB_
13struct sgttyb {
14 char sg_ispeed; /* input speed */
15 char sg_ospeed; /* output speed */
16 char sg_erase; /* erase character */
17 char sg_kill; /* kill character */
18 short sg_flags; /* mode flags */
19};
20#endif