7 lines
140 B
C
7 lines
140 B
C
extern int _ioctl(int fd, int ioc, void* ptr);
|
|
|
|
int stty(int fildes, char* argp)
|
|
{
|
|
return _ioctl(fildes,/*TIOCSETP*/(('t'<<8)|9),argp) ;
|
|
}
|