10 lines
96 B
C
10 lines
96 B
C
|
#include <sgtty.h>
|
||
|
|
||
|
stty(fd, argp)
|
||
|
int fd;
|
||
|
char *argp;
|
||
|
{
|
||
|
return ioctl(fd, TIOCSETP, argp);
|
||
|
}
|
||
|
|