From 58050209857ca9ef632254dd05cae407cf7f7a0d Mon Sep 17 00:00:00 2001 From: David Henkel-Wallace Date: Fri, 15 Nov 1991 23:23:11 +0000 Subject: ansi name abuse changes --- gdb/dwarfread.c | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) (limited to 'gdb/dwarfread.c') diff --git a/gdb/dwarfread.c b/gdb/dwarfread.c index bfdddc5..2d72310 100644 --- a/gdb/dwarfread.c +++ b/gdb/dwarfread.c @@ -63,9 +63,12 @@ FIXME: See other FIXME's and "ifdef 0" scattered throughout the code for other things to work on, if you get bored. :-) */ - #include +#ifdef __STDC__ +#include +#else #include +#endif #include #include "defs.h" @@ -300,7 +303,8 @@ static int numutypes; /* Max number of user type pointers */ more intuitive, since it can be used for both static and external definitions. */ -static void dwarfwarn (); /* EXFUN breaks with (FIXME)*/ +static void +EXFUN (dwarfwarn, (char *fmt DOTS)); static void EXFUN (scan_partial_symbols, (char *thisdie AND char *enddie)); @@ -590,6 +594,26 @@ NOTES information for the DIE where the problem was noticed. */ +#ifdef __STDC__ +static void +DEFUN(dwarfwarn, (fmt), char *fmt DOTS) +{ + va_list ap; + + va_start (ap, fmt); + warning_setup (); + fprintf (stderr, "DWARF warning (ref 0x%x): ", curdie -> dieref); + if (curdie -> at_name) + { + fprintf (stderr, "'%s': ", curdie -> at_name); + } + vfprintf (stderr, fmt, ap); + fprintf (stderr, "\n"); + fflush (stderr); + va_end (ap); +} +#else + static void dwarfwarn (va_alist) va_dcl @@ -610,7 +634,7 @@ dwarfwarn (va_alist) fflush (stderr); va_end (ap); } - +#endif /* LOCAL FUNCTION -- cgit v1.1