Commit 413c5c85 by Laurynas Biveinis Committed by Bruce Korb

skip stdio_va_list fix if __DJ_va_list found in a header

From-SVN: r38242
parent e9e42530
2000-12-13 Laurynas Biveinis <lauras@softhome.net>
* fixinc/inclhack.def: skip stdio_va_list fix if __DJ_va_list
found in a header.
* fixinc/fixincl.x: regenerated.
2000-12-13 DJ Delorie <dj@redhat.com>
* config.gcc (cygwin, win32, mingw32): Use float-i386.h.
......
......@@ -3679,7 +3679,7 @@ tSCC zStdio_Va_ListList[] =
* content bypass pattern - skip fix if pattern found
*/
tSCC zStdio_Va_ListBypass0[] =
"__gnuc_va_list|_BSD_VA_LIST_";
"__gnuc_va_list|_BSD_VA_LIST_|__DJ_va_list";
#define STDIO_VA_LIST_TEST_CT 1
static tTestDesc aStdio_Va_ListTests[] = {
......
......@@ -2011,7 +2011,7 @@ fix = {
fix = {
hackname = stdio_va_list;
files = stdio.h;
bypass = '__gnuc_va_list|_BSD_VA_LIST_';
bypass = '__gnuc_va_list|_BSD_VA_LIST_|__DJ_va_list';
/*
* Use __gnuc_va_list in arg types in place of va_list.
......
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