| 485 | } |
| 486 | |
| 487 | void |
| 488 | backsp(void) |
| 489 | { |
| 490 | char eraser[] = { CHAR_BS, CHAR_BLANK, CHAR_BS, 0 }; |
| 491 | short err; |
| 492 | |
| 493 | err = add_tty_string(_mt_window, eraser); |
| 494 | err = update_tty(_mt_window); |
| 495 | } |
| 496 | |
| 497 | void |
| 498 | msmsg(const char *str, ...) |
nothing calls this directly
no test coverage detected