stty.c 96 B

123456789
  1. #include <sgtty.h>
  2. stty(fd, argp)
  3. int fd;
  4. char *argp;
  5. {
  6. return ioctl(fd, TIOCSETP, argp);
  7. }