| 546 | staticfn void vraw_printf(const char *, va_list); |
| 547 | |
| 548 | void |
| 549 | raw_printf(const char *line, ...) |
| 550 | { |
| 551 | va_list the_args; |
| 552 | |
| 553 | va_start(the_args, line); |
| 554 | vraw_printf(line, the_args); |
| 555 | va_end(the_args); |
| 556 | if (!program_state.beyond_savefile_load) |
| 557 | ge.early_raw_messages++; |
| 558 | } |
| 559 | |
| 560 | DISABLE_WARNING_FORMAT_NONLITERAL |
| 561 |
no test coverage detected