From: David Edelsohn Date: Tue, 23 Jan 1996 22:53:45 +0000 (+0000) Subject: * dis-asm.h (INIT_DISASSEMBLE_INFO): New argument FPRINTF_FUNC. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f29a36c0d43bc0fafb0ed81351a1534d0bac6062;p=binutils-gdb.git * dis-asm.h (INIT_DISASSEMBLE_INFO): New argument FPRINTF_FUNC. --- diff --git a/include/dis-asm.h b/include/dis-asm.h index e8efbc3a37f..f520b1915ca 100644 --- a/include/dis-asm.h +++ b/include/dis-asm.h @@ -165,8 +165,8 @@ extern void perror_memory PARAMS ((int, bfd_vma, struct disassemble_info *)); extern void generic_print_address PARAMS ((bfd_vma, struct disassemble_info *)); -#define INIT_DISASSEMBLE_INFO(INFO, STREAM) \ - (INFO).fprintf_func = (fprintf_ftype)fprintf, \ +#define INIT_DISASSEMBLE_INFO(INFO, STREAM, FPRINTF_FUNC) \ + (INFO).fprintf_func = (FPRINTF_FUNC), \ (INFO).stream = (STREAM), \ (INFO).buffer = NULL, \ (INFO).buffer_vma = 0, \