| 1575 | volatile int junk; /* prevent optimizer from eliminating loop below */ |
| 1576 | |
| 1577 | void |
| 1578 | tty_delay_output(void) |
| 1579 | { |
| 1580 | /* delay 50 ms - uses ANSI C clock() function now */ |
| 1581 | clock_t goal; |
| 1582 | int k; |
| 1583 | |
| 1584 | goal = 50 + clock(); |
| 1585 | back_buffer_flip(); |
| 1586 | if (iflags.debug_fuzzer) |
| 1587 | return; |
| 1588 | |
| 1589 | while (goal > clock()) { |
| 1590 | k = junk; /* Do nothing */ |
| 1591 | } |
| 1592 | nhUse(k); |
| 1593 | } |
| 1594 | |
| 1595 | /* |
| 1596 | * CLR_BLACK 0 |
nothing calls this directly
no test coverage detected