summaryrefslogtreecommitdiffstats
path: root/src/H5VLpassthru.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2018-12-17 19:40:10 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2018-12-17 19:40:10 (GMT)
commitb0457117d867d9850d042d7c3f71a747899b932e (patch)
treecfc9974b3b4c9770e1b89ce707684a71d41a84b5 /src/H5VLpassthru.c
parent6306766fb4f8012cdb5b74fd7d59e98b68c916f2 (diff)
downloadhdf5-b0457117d867d9850d042d7c3f71a747899b932e.zip
hdf5-b0457117d867d9850d042d7c3f71a747899b932e.tar.gz
hdf5-b0457117d867d9850d042d7c3f71a747899b932e.tar.bz2
Further va_list improvements.
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 */