| 707 | } |
| 708 | |
| 709 | void |
| 710 | error(const char *s, ...) |
| 711 | { |
| 712 | va_list the_args; |
| 713 | |
| 714 | va_start(the_args, s); |
| 715 | vprintf(s, the_args); |
| 716 | va_end(the_args); |
| 717 | exit(EXIT_FAILURE); |
| 718 | } |
| 719 | |
| 720 | void |
| 721 | pline(const char *s, ...) |
no test coverage detected