* dis-asm.h (INIT_DISASSEMBLE_INFO): New argument FPRINTF_FUNC.

This commit is contained in:
David Edelsohn 1996-01-23 22:53:45 +00:00
parent 546bfba851
commit f29a36c0d4
1 changed files with 2 additions and 2 deletions

View File

@ -165,8 +165,8 @@ extern void perror_memory PARAMS ((int, bfd_vma, struct disassemble_info *));
extern void generic_print_address extern void generic_print_address
PARAMS ((bfd_vma, struct disassemble_info *)); PARAMS ((bfd_vma, struct disassemble_info *));
#define INIT_DISASSEMBLE_INFO(INFO, STREAM) \ #define INIT_DISASSEMBLE_INFO(INFO, STREAM, FPRINTF_FUNC) \
(INFO).fprintf_func = (fprintf_ftype)fprintf, \ (INFO).fprintf_func = (FPRINTF_FUNC), \
(INFO).stream = (STREAM), \ (INFO).stream = (STREAM), \
(INFO).buffer = NULL, \ (INFO).buffer = NULL, \
(INFO).buffer_vma = 0, \ (INFO).buffer_vma = 0, \