diff options
author | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-05-17 17:56:32 +0000 |
---|---|---|
committer | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-05-17 17:56:32 +0000 |
commit | edcecaca19bcfa9a1f6126a3c2f47cc7c547dfad (patch) | |
tree | 7d2174eccae594dafb6bdef10fe5af0062f991c6 /gcc/ginclude/stdarg.h | |
parent | c925d29b39bb09b243b0651a0be036db9856e49b (diff) | |
download | gcc-edcecaca19bcfa9a1f6126a3c2f47cc7c547dfad.tar.gz |
[__svr4__ __i860__]: Define _VA_LIST only if not defined already.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@4486 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ginclude/stdarg.h')
-rw-r--r-- | gcc/ginclude/stdarg.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/ginclude/stdarg.h b/gcc/ginclude/stdarg.h index 986240bdec2..dfa734ba39c 100644 --- a/gcc/ginclude/stdarg.h +++ b/gcc/ginclude/stdarg.h @@ -120,8 +120,10 @@ void va_end (__gnuc_va_list); /* Defined in libgcc.a */ #ifndef _VA_LIST_ #define _VA_LIST_ #ifdef __i860__ +#ifndef _VA_LIST #define _VA_LIST va_list #endif +#endif /* __i860__ */ typedef __gnuc_va_list va_list; #endif /* _VA_LIST_ */ #else /* not __svr4__ */ |