entered into RCS

From-SVN: r260
This commit is contained in:
Charles Hannum 1992-01-31 06:51:42 +00:00
parent cc8995d5a7
commit 0bea10730a
1 changed files with 5 additions and 0 deletions

View File

@ -31,6 +31,11 @@ typedef struct {
(pvar).__stack = (char *) &__va_stack)
#define va_end(pvar)
/* Avoid errors if compiling GCC v2 with GCC v1. */
#if __GNUC__ == 1
#define __extension__
#endif
#define va_arg(pvar,type) \
__extension__ \
({ type __va_result; \