Go to the documentation of this file.
9 #ifndef _SQUID_STDVARARGS_H
10 #define _SQUID_STDVARARGS_H
17 #if defined(__cplusplus)
24 #define VA_LOCAL_DECL va_list ap;
25 #define VA_START(f) va_start(ap, f)
26 #define VA_SHIFT(v,t) ;
27 #define VA_END va_end(ap)
33 #define VA_LOCAL_DECL va_list ap;
34 #define VA_START(f) va_start(ap)
35 #define VA_SHIFT(v,t) v = va_arg(ap,t)
36 #define VA_END va_end(ap)
39 #error XX **NO VARARGS ** XX
Introduction
Documentation
Support
Miscellaneous
Web Site Translations
Mirrors