Files
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

17 lines
269 B
C

#if !defined(lint) && defined(SCCSIDS)
static char sccsid[] = "@(#)stty.c 1.1 92/07/30 SMI"; /* from UCB 4.2 83/07/04 */
#endif
/*
* Writearound to old stty system call.
*/
#include <sgtty.h>
stty(fd, ap)
struct sgttyb *ap;
{
return(ioctl(fd, TIOCSETP, ap));
}