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