| 732 | errors = true; |
| 733 | } |
| 734 | |
| 735 | ATTRIBUTE_FORMAT((printf, 1, 2)) static void |
| 736 | warning(char const *msgid, ...) |
| 737 | { |
| 738 | va_list args; |
| 739 | fprintf(stderr, _("warning: ")); |
| 740 | va_start(args, msgid); |
| 741 | verror(msgid, args); |
| 742 | va_end(args); |
| 743 | warnings = true; |
| 744 | } |
| 745 | |
| 746 | /* Convert ARG, a string in base BASE, to an unsigned long value no |
no test coverage detected