diff options
author | Doug Evans <dje@gnu.org> | 1994-02-12 00:50:27 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1994-02-12 00:50:27 +0000 |
commit | cc92726311f4f710a6359385fd3697fee5d78a42 (patch) | |
tree | 9a88340452838a7717f572ebf96f446714dde313 /gcc/rtl.h | |
parent | c77c97664f9f3739a5d2ec78042aaad769b4bdeb (diff) | |
download | gcc-cc92726311f4f710a6359385fd3697fee5d78a42.zip gcc-cc92726311f4f710a6359385fd3697fee5d78a42.tar.gz gcc-cc92726311f4f710a6359385fd3697fee5d78a42.tar.bz2 |
Surround definition of VPROTO, VA_START with #ifndef VPROTO.
From-SVN: r6531
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 |