Commit 51eeee3e by Richard Stallman

[__svr4__ __i860__]: Define _VA_LIST only if not defined already.

From-SVN: r4486
parent 823c6f60
...@@ -120,8 +120,10 @@ void va_end (__gnuc_va_list); /* Defined in libgcc.a */ ...@@ -120,8 +120,10 @@ void va_end (__gnuc_va_list); /* Defined in libgcc.a */
#ifndef _VA_LIST_ #ifndef _VA_LIST_
#define _VA_LIST_ #define _VA_LIST_
#ifdef __i860__ #ifdef __i860__
#ifndef _VA_LIST
#define _VA_LIST va_list #define _VA_LIST va_list
#endif #endif
#endif /* __i860__ */
typedef __gnuc_va_list va_list; typedef __gnuc_va_list va_list;
#endif /* _VA_LIST_ */ #endif /* _VA_LIST_ */
#else /* not __svr4__ */ #else /* not __svr4__ */
......
...@@ -130,8 +130,10 @@ typedef void *__gnuc_va_list; ...@@ -130,8 +130,10 @@ typedef void *__gnuc_va_list;
#ifndef _VA_LIST_ #ifndef _VA_LIST_
#define _VA_LIST_ #define _VA_LIST_
#ifdef __i860__ #ifdef __i860__
#ifndef _VA_LIST
#define _VA_LIST va_list #define _VA_LIST va_list
#endif #endif
#endif /* __i860__ */
typedef __gnuc_va_list va_list; typedef __gnuc_va_list va_list;
#endif /* _VA_LIST_ */ #endif /* _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