-static void
-warn_banner (void)
-{
- if (infile == 0)
- fprintf(stderr, _("%s: "), program_name);
- else
- fprintf(stderr, _("%s:%d: "), infile, lineno);
- failure = 1;
-}
-
-/* Print a warning message S. */
-
-void
-warn (char *s)
-{
- warn_banner ();
- fputs (s, stderr);
- fputc ('\n', stderr);
-}
-
-/* Print a warning message containing the string for the integer X1.
- The message is given by the format FMT. */
-
-void
-warni (char *fmt, int x1)
-{
- warn_banner ();
- fprintf (stderr, fmt, x1);
- fputc ('\n', stderr);
-}
-
-/* Print a warning message containing the string X1.
- The message is given by the format FMT. */
-
-void
-warns (char *fmt, char *x1)
-{
- warn_banner ();
- fprintf (stderr, fmt, x1);
- fputc ('\n', stderr);
-}
-
-/* Print a warning message containing the two strings X1 and X2.
- The message is given by the format FMT. */
-
-void
-warnss (char *fmt, char *x1, char *x2)
-{
- warn_banner ();
- fprintf (stderr, fmt, x1, x2);
- fputc ('\n', stderr);
-}
-
-/* Print a warning message containing the 3 strings X1, X2, X3.
- The message is given by the format FMT. */
-
-void
-warnsss (char *fmt, char *x1, char *x2, char *x3)
-{
- warn_banner ();
- fprintf (stderr, fmt, x1, x2, x3);
- fputc ('\n', stderr);
-}
-
-/* Print a message for the fatal occurence of more than MAXSHORT
- instances of whatever is denoted by the string S. */