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