ack/mach/pdp/libsys/stty.c

7 lines
107 B
C
Raw Normal View History

1987-01-07 17:13:41 +00:00
int stty(fildes,argp)
int fildes ;
1987-05-14 17:45:41 +00:00
char *argp;
1987-01-07 17:13:41 +00:00
{
1987-05-14 17:45:41 +00:00
return ioctl(fildes,/*TIOCSETP*/(('t'<<8)|9),argp) ;
1987-01-07 17:13:41 +00:00
}