summaryrefslogtreecommitdiffstats
path: root/src/H5VLpassthru.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5VLpassthru.c')
-rw-r--r--src/H5VLpassthru.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5VLpassthru.c b/src/H5VLpassthru.c
index 193c759..bf81425 100644
--- a/src/H5VLpassthru.c
+++ b/src/H5VLpassthru.c
@@ -41,6 +41,10 @@
/* (Uncomment to enable) */
/* #define ENABLE_PASSTHRU_LOGGING */
+/* Windows missing va_copy() hack (from H5win2_defs.h) */
+#if (_MSC_VER < 1800)
+#define va_copy(D,S) ((D) = (S))
+#endif /* MSC_VER < 1800 */
/************/
/* Typedefs */