From cc92726311f4f710a6359385fd3697fee5d78a42 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Sat, 12 Feb 1994 00:50:27 +0000 Subject: [PATCH] Surround definition of VPROTO, VA_START with #ifndef VPROTO. From-SVN: r6531 --- gcc/rtl.h | 2 ++ gcc/tree.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/gcc/rtl.h b/gcc/rtl.h index c6e47b2fa21..b94a30a3520 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -151,6 +151,7 @@ typedef struct rtx_def #endif #endif +#ifndef VPROTO #ifdef __STDC__ #define VPROTO(ARGS) ARGS #define VA_START(va_list,var) va_start(va_list,var) @@ -158,6 +159,7 @@ typedef struct rtx_def #define VPROTO(ARGS) (va_alist) va_dcl #define VA_START(va_list,var) va_start(va_list) #endif +#endif #define NULL_RTX (rtx) 0 diff --git a/gcc/tree.h b/gcc/tree.h index ed5440afbf9..f94687f7287 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -987,6 +987,7 @@ union tree_node #endif #endif +#ifndef VPROTO #ifdef __STDC__ #define VPROTO(ARGS) ARGS #define VA_START(va_list,var) va_start(va_list,var) @@ -994,6 +995,7 @@ union tree_node #define VPROTO(ARGS) (va_alist) va_dcl #define VA_START(va_list,var) va_start(va_list) #endif +#endif #define NULL_TREE (tree) NULL -- 2.30.2