From b62d66b297ab0401818a4d723d5206d03e5f9bca Mon Sep 17 00:00:00 2001 From: Benjamin Dobell Date: Sat, 17 May 2014 04:36:51 +1000 Subject: Windows does not provide (or require) va_copy. --- heimdall/source/Heimdall.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/heimdall/source/Heimdall.h b/heimdall/source/Heimdall.h index ce7aaea..5e348c4 100644 --- a/heimdall/source/Heimdall.h +++ b/heimdall/source/Heimdall.h @@ -26,6 +26,10 @@ #include #undef GetBinaryType +#ifndef va_copy +#define va_copy(d, s) ((d) = (s)) +#endif + #else #include "../config.h" -- cgit v1.1