stty.c 78 B

12345
  1. stty(fildes, arg)
  2. char *arg;
  3. {
  4. return ioctl(fildes, ('t' << 8) | 9, arg);
  5. }