Commit 28f50739 by Richard Stallman

(va_end, anonymous enum): Don't declare if va_end already defined as macro.

From-SVN: r2679
parent 6f8d2fbd
...@@ -61,11 +61,9 @@ typedef struct { ...@@ -61,11 +61,9 @@ typedef struct {
#endif /* _STDARG_H */ #endif /* _STDARG_H */
void va_end (__gnuc_va_list); /* Defined in libgcc.a */
#define va_end(__va)
/* Values returned by __builtin_classify_type. */ /* Values returned by __builtin_classify_type. */
#ifndef va_end
enum { enum {
__no_type_class = -1, __no_type_class = -1,
__void_type_class, __void_type_class,
...@@ -89,6 +87,10 @@ enum { ...@@ -89,6 +87,10 @@ enum {
__lang_type_class __lang_type_class
}; };
void va_end (__gnuc_va_list); /* Defined in libgcc.a */
#endif
#define va_end(__va)
#define __NUM_PARM_FREGS 8 #define __NUM_PARM_FREGS 8
#define __NUM_PARM_IREGS 12 #define __NUM_PARM_IREGS 12
......
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