Commit 3b3a1054 by Bruce Korb Committed by Alexandre Oliva

inclhack.def (irix_stdio_va_list): New.

* fixinc/inclhack.def (irix_stdio_va_list): New.
* fixinc/fixincl.x: Rebuilt.

From-SVN: r40527
parent b923ac06
2001-03-16 Bruce Korb <bkorb@gnu.org>, Alexandre Oliva <aoliva@redhat.com>
* fixinc/inclhack.def (irix_stdio_va_list): New.
* fixinc/fixincl.x: Rebuilt.
2001-03-15 Richard Henderson <rth@redhat.com>
* dwarf2asm.c (dw2_asm_output_offset): Use ASM_OUTPUT_DWARF_OFFSET
......
......@@ -1327,6 +1327,20 @@ fix = {
/*
* IRIX 5.x's stdio.h declares some functions that take a va_list as
* taking char *. However, GCC uses void * for va_list, so
* calling vfprintf with a va_list fails in C++. */
fix = {
hackname = irix_stdio_va_list;
files = stdio.h;
select = '(printf\(.*), /\* va_list \*/ char \*';
c_fix = format;
c_fix_arg = "%1, __gnuc_va_list";
};
/*
* Non-traditional "const" declaration in Irix's limits.h.
*/
fix = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment