From: Richard Stallman Date: Sun, 16 May 1993 04:30:47 +0000 (+0000) Subject: [__svr4__ __i860__] (_VA_LIST): Do define. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9dace10d1b46a35e9ea8b28724dd83b970b19d21;p=gcc.git [__svr4__ __i860__] (_VA_LIST): Do define. From-SVN: r4479 --- diff --git a/gcc/ginclude/stdarg.h b/gcc/ginclude/stdarg.h index e19626e77ab..986240bdec2 100644 --- a/gcc/ginclude/stdarg.h +++ b/gcc/ginclude/stdarg.h @@ -119,6 +119,9 @@ void va_end (__gnuc_va_list); /* Defined in libgcc.a */ have no conflict with that. */ #ifndef _VA_LIST_ #define _VA_LIST_ +#ifdef __i860__ +#define _VA_LIST va_list +#endif typedef __gnuc_va_list va_list; #endif /* _VA_LIST_ */ #else /* not __svr4__ */ diff --git a/gcc/ginclude/varargs.h b/gcc/ginclude/varargs.h index 4c6e35232a0..7e92ba314d1 100644 --- a/gcc/ginclude/varargs.h +++ b/gcc/ginclude/varargs.h @@ -129,6 +129,9 @@ typedef void *__gnuc_va_list; have no conflict with that. */ #ifndef _VA_LIST_ #define _VA_LIST_ +#ifdef __i860__ +#define _VA_LIST va_list +#endif typedef __gnuc_va_list va_list; #endif /* _VA_LIST_ */