aboutsummaryrefslogtreecommitdiff
path: root/gdb/dwarfread.c
diff options
context:
space:
mode:
authorDavid Henkel-Wallace <gumby@cygnus>1991-11-15 23:23:11 +0000
committerDavid Henkel-Wallace <gumby@cygnus>1991-11-15 23:23:11 +0000
commit58050209857ca9ef632254dd05cae407cf7f7a0d (patch)
tree1ae0f4520a548b57e5b0f8f15ddfa870a14e2045 /gdb/dwarfread.c
parent4c53d9ca84b57631a94d409387a3eb178f01fe75 (diff)
downloadgdb-58050209857ca9ef632254dd05cae407cf7f7a0d.zip
gdb-58050209857ca9ef632254dd05cae407cf7f7a0d.tar.gz
gdb-58050209857ca9ef632254dd05cae407cf7f7a0d.tar.bz2
ansi name abuse changes
Diffstat (limited to 'gdb/dwarfread.c')
-rw-r--r--gdb/dwarfread.c30
1 files changed, 27 insertions, 3 deletions
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 <stdio.h>
+#ifdef __STDC__
+#include <stdarg.h>
+#else
#include <varargs.h>
+#endif
#include <fcntl.h>
#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 <varargs.h> (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