通过查看stdarg.h
,我发现了以下内容:
#if !defined(__STRICT_ANSI__) || __STDC_VERSION__ + 0 >= 199900L
#define va_copy(d,s) __builtin_va_copy(d,s)
#endif
在表达式中添加 0 是否有目的?
通过查看stdarg.h
,我发现了以下内容:
#if !defined(__STRICT_ANSI__) || __STDC_VERSION__ + 0 >= 199900L
#define va_copy(d,s) __builtin_va_copy(d,s)
#endif
在表达式中添加 0 是否有目的?