From: Richard Stallman Date: Wed, 21 Oct 1992 22:56:02 +0000 (+0000) Subject: Check and define _ANSI_STDARG_H along with _STDARG_H. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6ed0be929c6f3c47e3148a79e3b77b9dd25a383e;p=platform%2Fupstream%2Fgcc.git Check and define _ANSI_STDARG_H along with _STDARG_H. From-SVN: r2547 --- diff --git a/gcc/ginclude/stdarg.h b/gcc/ginclude/stdarg.h index c93240e..2101867 100644 --- a/gcc/ginclude/stdarg.h +++ b/gcc/ginclude/stdarg.h @@ -4,9 +4,11 @@ Thus, va_arg (..., short) is not valid. */ #ifndef _STDARG_H +#ifndef _ANSI_STDARG_H #ifndef __need___va_list #define _STDARG_H -#endif +#define _ANSI_STDARG_H +#endif /* not __need___va_list */ #undef __need___va_list #ifndef __GNUC__ @@ -118,4 +120,5 @@ typedef __gnuc_va_list va_list; #endif /* _STDARG_H */ #endif /* __GNUC__ */ +#endif /* not _ANSI_STDARG_H */ #endif /* not _STDARG_H */