BSD 4_1c_2 release
[unix-history] / usr / include / sgtty.h
CommitLineData
279de2df
C
1/*
2 * Structure for stty and gtty system calls.
3 */
4
5#ifndef _IOCTL_
6#include <sys/ioctl.h>
7#endif
8
9#ifndef _SGTTYB_
10#define _SGTTYB_
11struct sgttyb {
12 char sg_ispeed; /* input speed */
13 char sg_ospeed; /* output speed */
14 char sg_erase; /* erase character */
15 char sg_kill; /* kill character */
16 short sg_flags; /* mode flags */
17};
18#endif