ack/mach/sun2/libsys/stty.c
1987-03-03 09:37:26 +00:00

8 lines
120 B
C

#include <sgtty.h>
int stty(fildes,argp)
int fildes ;
struct sgttyb *argp ;
{
return ioctl(fildes,TIOCSETP,argp) ;
}