From 45cbd51633341b8781b183f8d959784f6e0bd60e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sun, 17 Nov 2019 14:21:37 +0100 Subject: [PATCH] Haiku: fake va_copy for now --- src/ctx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ctx.c b/src/ctx.c index 56e1f34..9aa51ac 100644 --- a/src/ctx.c +++ b/src/ctx.c @@ -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