BSD 3 development
[unix-history] / usr / src / cmd / sdb / sgtty.h
CommitLineData
b7523e3d
HK
1/*
2 * Structure for stty and gtty system calls.
3 */
4
5struct sgttyb {
6 char sg_ispeed; /* input speed */
7 char sg_ospeed; /* output speed */
8 char sg_erase; /* erase character */
9 char sg_kill; /* kill character */
10 int sg_flags; /* mode flags */
11};