Home | History | Annotate | Download | only in libxml2

Lines Matching refs:VA_COPY

52  * The following VA_COPY was coded following an example in
57 #ifndef VA_COPY
59 #define VA_COPY(dest, src) va_copy(dest, src)
62 #define VA_COPY(dest,src) __va_copy(dest, src)
65 #define VA_COPY(dest,src) (dest) = (src)
68 #define VA_COPY(dest,src) memcpy((char *)(dest),(char *)(src),sizeof(va_list))
4731 VA_COPY(aq, ap);