Index: runtime/platform/c99_support_win.h |
=================================================================== |
--- runtime/platform/c99_support_win.h (revision 7517) |
+++ runtime/platform/c99_support_win.h (working copy) |
@@ -13,6 +13,12 @@ |
static const unsigned __int64 kQuietNaNMask = |
static_cast<unsigned __int64>(0xfff) << 51; |
+ |
+#ifndef va_copy |
+#define va_copy(dst, src) (memmove(&(dst), &(src), sizeof(dst))) |
+#endif /* va_copy */ |
+ |
+ |
#define INFINITY HUGE_VAL |
#define NAN \ |
*reinterpret_cast<const double*>(&kQuietNaNMask) |