From bf661056496e59c17088b0905e65659bf3b73092 Mon Sep 17 00:00:00 2001 From: Steve Chamberlain Date: Thu, 18 Apr 1991 21:14:53 +0000 Subject: [PATCH] Fixed some prototypes --- binutils/objdump.c | 61 ++++------------------------------------------ 1 file changed, 5 insertions(+), 56 deletions(-) diff --git a/binutils/objdump.c b/binutils/objdump.c index 352adc3a5d3..4f764bd4d8d 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -20,48 +20,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* $Id$ - $Log$ - Revision 1.1 1991/03/21 21:26:48 gumby - Initial revision - - * Revision 1.2 1991/03/15 18:34:14 rich - * foo - * - * Revision 1.1 1991/03/13 00:34:19 chrisb - * Initial revision - * - * Revision 1.9 1991/03/09 04:36:33 rich - * Modified Files: - * sparc-pinsn.c ostrip.c objdump.c m68k-pinsn.c i960-pinsn.c - * binutils.h - * - * Pulled sysdep.h out of bfd.h. - * - * Revision 1.8 1991/03/09 03:42:01 rich - * Modified Files: - * Makefile alloca.c ar.c i960-pinsn.c nm.c objdump.c ostrip.c - * strip.c - * - * Ports for intel960 group Portland. - * - * Revision 1.7 1991/03/08 21:54:47 rich - * Modified Files: - * Makefile ar.c binutils.h bucomm.c copy.c cplus-dem.c getopt.c - * i960-pinsn.c m68k-pinsn.c nm.c objdump.c sparc-opcode.h - * sparc-pinsn.c strip.c - * - * Verifying Portland tree with steve's last changes. Also, some partial - * porting. - * - * Revision 1.6 1991/03/08 07:46:26 sac - * Added -l option to disassembly - prints line numbers too. - * - * Revision 1.5 1991/03/07 21:50:24 sac - * More intelligent reloc printing - * - * Revision 1.4 1991/03/05 16:36:54 sac - * Fixed bug where empty symbols would print (null) on suns and crash elsewhere. - * */ /* * Until there is other documentation, refer to the manual page dump(1) in @@ -74,8 +32,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include -char *malloc(); -char *realloc(); + + char *xmalloc(); char *default_target = NULL; /* default at runtime */ @@ -261,16 +219,7 @@ FILE *stream; } } - { - char *section_name; - asection *sec = syms[thisplace]->section; - if (sec) { - section_name = sec->name; - } - else { - section_name = "abs"; - } - } + if (syms[thisplace]->value > vma) { fprintf(stream,"%08lx (%s-%lx)", vma, syms[thisplace]->name, syms[thisplace]->value - vma); @@ -614,8 +563,8 @@ bfd *abfd; for (p =relpp; *p != (arelent *)NULL; p++) { arelent *q = *p; - char *sym_name; - char *section_name = q->section == (asection *)NULL ? "*abs" : + CONST char *sym_name; + CONST char *section_name = q->section == (asection *)NULL ? "*abs" : q->section->name; if (q->sym_ptr_ptr && *q->sym_ptr_ptr) { sym_name = (*(q->sym_ptr_ptr))->name ; -- 2.30.2