Loading...
Searching...
No Matches
Go to the documentation of this file.
4#ifndef __plm_va_copy_h__
5#define __plm_va_copy_h__
7#if defined(__BORLANDC__) || defined(_MSC_VER)
9#define va_copy(d,s) ((d) = (s))
13#if defined(__GNUC__) || defined(__clang__)
15#define va_copy(dest, src) __builtin_va_copy(dest, src)