Haiku: fake va_copy for now

This commit is contained in:
François Revol
2019-11-17 14:21:37 +01:00
parent 484e971323
commit 45cbd51633

View File

@@ -51,7 +51,7 @@
#include "util.h"
/* Workaround for visual studio without va_copy support. */
#if defined(_MSC_VER) && _MSC_VER < 1800
#if defined(_MSC_VER) && _MSC_VER < 1800 || defined(__HAIKU__)
#define va_copy(d,s) ((d) = (s))
#endif