7 lines
107 B
C
7 lines
107 B
C
int stty(fildes,argp)
|
|
int fildes ;
|
|
char *argp;
|
|
{
|
|
return ioctl(fildes,/*TIOCSETP*/(('t'<<8)|9),argp) ;
|
|
}
|