manual page distributed with 4.2BSD
[unix-history] / usr / src / lib / libcompat / 4.1 / stty.c
... / ...
CommitLineData
1/* stty.c 4.2 83/07/04 */
2
3/*
4 * Writearound to old stty system call.
5 */
6
7#include <sgtty.h>
8
9stty(fd, ap)
10 struct sgtty *ap;
11{
12
13 return(ioctl(fd, TIOCSETP, ap));
14}