* utils.c (fprintf_filtered, fprintf_unfiltered, fprintfi_filtered,

printf_filtered, printf_unfiltered, printfi_filtered, query, warning,
          error, fatal, fatal_dump_core): Use stdarg.h macros when compiling
          with an ANSI compiler.
        * complain.c (complain): Likewise.
        * language.c (type_error, range_error): Likewise.
        * monitor.c (monitor_printf, monitor_printf_noecho): Likewise.
        * remote-array.c (printf_monitor, debuglogs): Likewise.
        * remote-mips.c (mips_error): Likewise.
        * remote-os9k.c (printf_monitor): Likewise.
        * remote-st.c (printf_stdebug): Likewise.
        * gdbtk.c (gdbtk_query): Likewise.

        * defs.h, complain.h, language.h, monitor.h: Add prototypes to
          match above changes.

        * printcmd.c: Remove uneeded #include <varargs.h>.
        * remote-e7000.c: Likewise.

        * f-typeprint.c (f_type_print_base): Fix typo found by above
          changes.
This commit is contained in:
J.T. Conklin
1995-05-18 23:45:31 +00:00
parent ff15324f63
commit 85c613aaa7
16 changed files with 293 additions and 66 deletions

View File

@@ -29,7 +29,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "defs.h"
#include <string.h>
#ifdef __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#include "symtab.h"
#include "gdbtypes.h"
@@ -978,19 +982,27 @@ op_error (fmt,op,fatal)
by the value of warning_pre_print and we do not return to the top level. */
void
#ifdef __STDC__
type_error (char *string, ...)
#else
type_error (va_alist)
va_dcl
#endif
{
va_list args;
#ifdef __STDC__
va_start (args, string);
#else
char *string;
va_start (args);
string = va_arg (args, char *);
#endif
if (type_check == type_check_warn)
fprintf_filtered (gdb_stderr, warning_pre_print);
else
error_begin ();
va_start (args);
string = va_arg (args, char *);
vfprintf_filtered (gdb_stderr, string, args);
fprintf_filtered (gdb_stderr, "\n");
va_end (args);
@@ -999,19 +1011,27 @@ type_error (va_alist)
}
void
#ifdef __STDC__
range_error (char *string, ...)
#else
range_error (va_alist)
va_dcl
#endif
{
va_list args;
#ifdef __STDC__
va_start (args, string);
#else
char *string;
va_start (args);
string = va_arg (args, char *);
#endif
if (range_check == range_check_warn)
fprintf_filtered (gdb_stderr, warning_pre_print);
else
error_begin ();
va_start (args);
string = va_arg (args, char *);
vfprintf_filtered (gdb_stderr, string, args);
fprintf_filtered (gdb_stderr, "\n");
va_end (args);