raw 227 src/simh/linehistory.c struct termios raw; raw 245 src/simh/linehistory.c raw = orig_termios; /* modify the original mode */ raw 248 src/simh/linehistory.c raw.c_iflag &= ~( BRKINT | ICRNL | INPCK | ISTRIP | IXON ); raw 250 src/simh/linehistory.c raw.c_cflag |= ( CS8 ); raw 253 src/simh/linehistory.c raw.c_lflag &= ~( ECHO | ICANON | IEXTEN | ISIG ); raw 256 src/simh/linehistory.c raw.c_cc[VMIN] = 1; raw 257 src/simh/linehistory.c raw.c_cc[VTIME] = 0; /* 1 byte, no timer */ raw 267 src/simh/linehistory.c if (tcsetattr(fd, TCSA_TYPE, &raw) < 0)