reset goes back to machine dependent
[unix-history] / usr / src / lib / libcompat / 4.1 / gtty.c
CommitLineData
e7c396b5
SL
1/* gtty.c 4.1 83/07/04 */
2
3/*
4 * Writearound to old gtty system call.
5 */
6
7#include <sgtty.h>
8
9gtty(fd, ap)
10 struct sgtty *ap;
11{
12
13 return(ioctl(fd, TIOCGETP, ap));
14}