ack/plat/pdpv7/libsys/stty.c

7 lines
140 B
C
Raw Normal View History

2022-08-01 20:08:23 +00:00
extern int _ioctl(int fd, int ioc, void* ptr);
int stty(int fildes, char* argp)
1987-01-07 17:13:41 +00:00
{
1990-01-22 11:24:37 +00:00
return _ioctl(fildes,/*TIOCSETP*/(('t'<<8)|9),argp) ;
1987-01-07 17:13:41 +00:00
}