date and time created 83/06/20 21:39:48 by sam
[unix-history] / usr / src / lib / libcompat / 4.1 / stty.c
CommitLineData
d17b77ff
BJ
1/* @(#)stty.c 4.1 (Berkeley) %G% */
2/*
3 * Writearound to old stty and gtty system calls
4 */
5
6#include <sgtty.h>
7
8stty(fd, ap)
9struct sgtty *ap;
10{
11 return(ioctl(fd, TIOCSETP, ap));
12}
13
14gtty(fd, ap)
15struct sgtty *ap;
16{
17 return(ioctl(fd, TIOCGETP, ap));
18}