| 614 | } |
| 615 | |
| 616 | int |
| 617 | term_flush(void *desc) |
| 618 | { |
| 619 | if (desc == stdout || desc == stderr) { |
| 620 | update_tty(_mt_window); |
| 621 | } else { |
| 622 | impossible("Substituted flush for file"); |
| 623 | return fflush(desc); |
| 624 | } |
| 625 | return 0; |
| 626 | } |
nothing calls this directly
no test coverage detected