fix compile error for MSVC; no va_copy here. Patch pasted to me by Keith Boshoff

This commit is contained in:
Nathan Letwory 2011-01-12 10:00:47 +00:00
parent 792bf1535f
commit 4043830cf8

@ -41,6 +41,14 @@
#endif #endif
#endif #endif
#ifndef va_copy
# ifdef __va_copy
# define va_copy(a,b) __va_copy(a,b)
# else /* !__va_copy */
# define va_copy(a,b) ((a)=(b))
# endif /* __va_copy */
#endif /* va_copy */
/***/ /***/
typedef struct DynStrElem DynStrElem; typedef struct DynStrElem DynStrElem;