| 761 | } |
| 762 | |
| 763 | static void |
| 764 | getret(void) |
| 765 | { |
| 766 | #if defined(MICRO) || defined(WIN32CON) |
| 767 | getreturn("to continue"); |
| 768 | #else |
| 769 | HUPSKIP(); |
| 770 | xputs("\n"); |
| 771 | if (flags.standout) |
| 772 | standoutbeg(); |
| 773 | xputs("Hit "); |
| 774 | xputs(iflags.cbreak ? "space" : "return"); |
| 775 | xputs(" to continue: "); |
| 776 | if (flags.standout) |
| 777 | standoutend(); |
| 778 | xwaitforspace(" "); |
| 779 | #endif |
| 780 | iflags.raw_printed = 0; |
| 781 | } |
| 782 | |
| 783 | void |
| 784 | tty_suspend_nhwindows(const char *str) |
no test coverage detected