Loading...
Searching...
No Matches
Go to the documentation of this file.
22#ifndef COMPAT_VA_COPY_H
23#define COMPAT_VA_COPY_H
27#if !defined(va_copy) && defined(_MSC_VER)
28#define va_copy(dst, src) ((dst) = (src))
30#if !defined(va_copy) && defined(__GNUC__) && __GNUC__ < 3
31#define va_copy(dst, src) __va_copy(dst, src)