1570af302Sopenharmony_ci#include <stdarg.h> 2570af302Sopenharmony_ci#define T(t) (t*)0; 3570af302Sopenharmony_cistatic void f() 4570af302Sopenharmony_ci{ 5570af302Sopenharmony_ciT(va_list) 6570af302Sopenharmony_ci#ifndef va_start 7570af302Sopenharmony_ci#error no va_start 8570af302Sopenharmony_ci#endif 9570af302Sopenharmony_ci#ifndef va_arg 10570af302Sopenharmony_ci#error no va_arg 11570af302Sopenharmony_ci#endif 12570af302Sopenharmony_ci#ifndef va_end 13570af302Sopenharmony_ci#error no va_end 14570af302Sopenharmony_ci#endif 15570af302Sopenharmony_ci#ifndef va_copy 16570af302Sopenharmony_ci#error no va_copy 17570af302Sopenharmony_ci#endif 18570af302Sopenharmony_ci} 19