Deleted Added
full compact
50,56c50,52
< /* Note that the type used in va_arg is supposed to match the
< actual type **after default promotions**.
< Thus, va_arg (..., short) is not valid. */
<
< #define va_start(v,l) __builtin_stdarg_start((v),l)
< #define va_end __builtin_va_end
< #define va_arg __builtin_va_arg
---
> #define va_start(v,l) __builtin_va_start(v,l)
> #define va_end(v) __builtin_va_end(v)
> #define va_arg(v,l) __builtin_va_arg(v,l)
58c54
< #define va_copy(d,s) __builtin_va_copy((d),(s))
---
> #define va_copy(d,s) __builtin_va_copy(d,s)
60c56
< #define __va_copy(d,s) __builtin_va_copy((d),(s))
---
> #define __va_copy(d,s) __builtin_va_copy(d,s)
62d57
<