stty.c 120 B

1234567
  1. #include <sgtty.h>
  2. int stty(fildes,argp)
  3. int fildes ;
  4. struct sgttyb *argp ;
  5. {
  6. return ioctl(fildes,TIOCSETP,argp) ;
  7. }