raw               231 src/simh/linehistory.c   struct termios raw;
raw               249 src/simh/linehistory.c   raw = orig_termios; /* modify the original mode */
raw               252 src/simh/linehistory.c   raw.c_iflag &= ~( BRKINT | ICRNL | INPCK | ISTRIP | IXON );
raw               254 src/simh/linehistory.c   raw.c_cflag |= ( CS8 );
raw               257 src/simh/linehistory.c   raw.c_lflag &= ~( ECHO | ICANON | IEXTEN | ISIG );
raw               260 src/simh/linehistory.c   raw.c_cc[VMIN]  = 1;
raw               261 src/simh/linehistory.c   raw.c_cc[VTIME] = 0; /* 1 byte, no timer */
raw               264 src/simh/linehistory.c   if (tcsetattr(fd, TCSAFLUSH, &raw) < 0)