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