/* Declaration for error-reporting function for Bison.
- Copyright 2000, 2001 Free Software Foundation, Inc.
+ Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
#include "complain.h"
-#ifndef HAVE_DECL_STRERROR_R
-"this configure-time declaration test was not run"
-#endif
-#if !HAVE_DECL_STRERROR_R
-char *strerror_r ();
-#endif
-
#ifndef _
# define _(String) String
#endif
name of the executing program. */
extern char *program_name;
-# ifdef HAVE_STRERROR_R
-# define __strerror_r strerror_r
+# if HAVE_STRERROR
+# ifndef HAVE_DECL_STRERROR
+"this configure-time declaration test was not run"
+# endif
+# if !HAVE_DECL_STRERROR && !defined strerror
+char *strerror PARAMS ((int));
+# endif
# else
-# if HAVE_STRERROR
-# ifndef strerror /* On some systems, strerror is a macro */
-char *strerror ();
-# endif
-# else
static char *
private_strerror (errnum)
int errnum;
return _(sys_errlist[errnum]);
return _("Unknown system error");
}
-# define strerror private_strerror
-# endif /* HAVE_STRERROR */
-# endif /* HAVE_STRERROR_R */
+# define strerror private_strerror
+# endif /* HAVE_STRERROR */
#endif /* not _LIBC */
/* This variable is incremented each time `warn' is called. */
fputs (": ", stderr);
fputs (_("warning: "), stderr);
+#ifdef VA_START
+ VA_START (args, message);
+ vfprintf (stderr, message, args);
+ va_end (args);
+#else
+ fprintf (stderr, message, a1, a2, a3, a4, a5, a6, a7, a8);
+#endif
+
+ ++warn_message_count;
+ putc ('\n', stderr);
+ fflush (stderr);
+}
+
+void
+#if defined VA_START && defined __STDC__
+warn (const char *message, ...)
+#else
+warn (message, va_alist)
+ char *message;
+ va_dcl
+#endif
+{
+#ifdef VA_START
+ va_list args;
+#endif
+
+ fflush (stdout);
+ fprintf (stderr, "%s: %s", infile ? infile : program_name, _("warning: "));
+
#ifdef VA_START
VA_START (args, message);
vfprintf (stderr, message, args);
LOCATION_PRINT (stderr, location);
fputs (": ", stderr);
+#ifdef VA_START
+ VA_START (args, message);
+ vfprintf (stderr, message, args);
+ va_end (args);
+#else
+ fprintf (stderr, message, a1, a2, a3, a4, a5, a6, a7, a8);
+#endif
+
+ ++complain_message_count;
+ putc ('\n', stderr);
+ fflush (stderr);
+}
+
+void
+#if defined VA_START && defined __STDC__
+complain (const char *message, ...)
+#else
+complain (message, va_alist)
+ char *message;
+ va_dcl
+#endif
+{
+#ifdef VA_START
+ va_list args;
+#endif
+
+ fflush (stdout);
+ fprintf (stderr, "%s: ", infile ? infile : program_name);
+
#ifdef VA_START
VA_START (args, message);
vfprintf (stderr, message, args);
#if defined VA_START && defined __STDC__
fatal_at (location_t location, const char *message, ...)
#else
-fatal (location, message, va_alist)
+fatal_at (location, message, va_alist)
location_t location;
char *message;
va_dcl