| 695 | /* provided for linkage only */ |
| 696 | |
| 697 | DISABLE_WARNING_FORMAT_NONLITERAL |
| 698 | |
| 699 | void |
| 700 | raw_printf(const char *line, ...) |
| 701 | { |
| 702 | va_list the_args; |
| 703 | |
| 704 | va_start(the_args, line); |
| 705 | vfprintf(stdout, line, the_args); |
| 706 | va_end(the_args); |
| 707 | } |
| 708 | |
| 709 | void |
| 710 | error(const char *s, ...) |
nothing calls this directly
no test coverage detected