objdump.c: Use correct prototype of fprintf, else it won't compile on ANSI
C systems.
This commit is contained in:
parent
0b0d6c3fa7
commit
12da177528
@ -1,3 +1,12 @@
|
||||
Thu Mar 25 10:38:11 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
|
||||
|
||||
* objdump.c (fprintf): Declaration of variadic function had better
|
||||
be a prototype for ANSI C systems.
|
||||
|
||||
Mon Mar 22 23:19:46 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
|
||||
|
||||
* Makefile.in: rename test-install to install-check
|
||||
|
||||
Fri Mar 19 14:40:08 1993 Steve Chamberlain (sac@thepub.cygnus.com)
|
||||
|
||||
* objdump.c (disassemble_data): Add H8500.
|
||||
|
@ -43,7 +43,7 @@ extern Elf_Internal_Shdr *bfd_elf_find_section();
|
||||
#endif /* ELF_STAB_DISPLAY */
|
||||
|
||||
extern char *xmalloc ();
|
||||
extern int fprintf ();
|
||||
extern int fprintf PARAMS ((FILE *, CONST char *, ...));
|
||||
|
||||
char *default_target = NULL; /* default at runtime */
|
||||
|
||||
@ -389,6 +389,9 @@ disassemble_data (abfd)
|
||||
case bfd_arch_i386:
|
||||
disassemble = print_insn_i386;
|
||||
break;
|
||||
case bfd_arch_h8500:
|
||||
disassemble = print_insn_h8500;
|
||||
break;
|
||||
case bfd_arch_m68k:
|
||||
disassemble = print_insn_m68k;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user