summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVailin Choi <vchoi@jam.ad.hdfgroup.org>2017-05-11 08:11:05 (GMT)
committerVailin Choi <vchoi@jam.ad.hdfgroup.org>2017-05-11 08:11:05 (GMT)
commit8c2d4c354413d4f3578aa30cf28ee4c4f5c137cf (patch)
treec6cca222f1d51615f067639d5a3905b7bd20e825 /src
parent01e55ba75c48f73ba35819b7c9c9f868802ec6f2 (diff)
downloadhdf5-8c2d4c354413d4f3578aa30cf28ee4c4f5c137cf.zip
hdf5-8c2d4c354413d4f3578aa30cf28ee4c4f5c137cf.tar.gz
hdf5-8c2d4c354413d4f3578aa30cf28ee4c4f5c137cf.tar.bz2
Incorporate additional code changes for the H5DOread_chunk patch from GE healthcare (HDFFV-9934)
Modifications made based on pull request (#485) comments.
Diffstat (limited to 'src')
-rw-r--r--src/H5private.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5private.h b/src/H5private.h
index 3c0cb75..b079136 100644
--- a/src/H5private.h
+++ b/src/H5private.h
@@ -1048,6 +1048,9 @@ typedef off_t h5_stat_size_t;
#define HDpow(X,Y) pow(X,Y)
#endif /* HDpow */
/* printf() variable arguments */
+#ifndef HDprintf
+ #define HDprintf(...) HDfprintf(stdout, __VA_ARGS__)
+#endif /* HDprintf */
#ifndef HDputc
#define HDputc(C,F) putc(C,F)
#endif /* HDputc*/