Commit 0bea1073 by Charles Hannum

entered into RCS

From-SVN: r260
parent cc8995d5
...@@ -31,6 +31,11 @@ typedef struct { ...@@ -31,6 +31,11 @@ typedef struct {
(pvar).__stack = (char *) &__va_stack) (pvar).__stack = (char *) &__va_stack)
#define va_end(pvar) #define va_end(pvar)
/* Avoid errors if compiling GCC v2 with GCC v1. */
#if __GNUC__ == 1
#define __extension__
#endif
#define va_arg(pvar,type) \ #define va_arg(pvar,type) \
__extension__ \ __extension__ \
({ type __va_result; \ ({ type __va_result; \
......
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