Commit 40620dcc by Jim Wilson

Delete include of <stdarg.h> when not gcc.

From-SVN: r7691
parent 3ea5a4ae
...@@ -3,12 +3,6 @@ ...@@ -3,12 +3,6 @@
actual type **after default promotions**. actual type **after default promotions**.
Thus, va_arg (..., short) is not valid. */ Thus, va_arg (..., short) is not valid. */
#ifndef __GNUC__
/* Use the system's macros with the system's compiler.
This is relevant only when building GCC with some other compiler. */
#include <stdarg.h>
#else
#ifndef _STDARG_H #ifndef _STDARG_H
#ifndef _ANSI_STDARG_H_ #ifndef _ANSI_STDARG_H_
#ifndef __need___va_list #ifndef __need___va_list
...@@ -163,4 +157,3 @@ typedef __gnuc_va_list va_list; ...@@ -163,4 +157,3 @@ typedef __gnuc_va_list va_list;
#endif /* not _ANSI_STDARG_H_ */ #endif /* not _ANSI_STDARG_H_ */
#endif /* not _STDARG_H */ #endif /* not _STDARG_H */
#endif /* __GNUC__ */
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