summaryrefslogtreecommitdiffstats
path: root/tools/test/perform/sio_standalone.h
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-08-27 21:49:10 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-08-27 21:49:10 (GMT)
commit09d13b3c13dfc3fa79a7d616d80a06183fb05cc9 (patch)
tree3e9a7eefca55dee039664b454f15a7aa87521142 /tools/test/perform/sio_standalone.h
parent369d17c05c57689338a22988df90bfb8313da071 (diff)
downloadhdf5-09d13b3c13dfc3fa79a7d616d80a06183fb05cc9.zip
hdf5-09d13b3c13dfc3fa79a7d616d80a06183fb05cc9.tar.gz
hdf5-09d13b3c13dfc3fa79a7d616d80a06183fb05cc9.tar.bz2
OESS-29 Fix HD prefix in perform and enable test compile
Diffstat (limited to 'tools/test/perform/sio_standalone.h')
-rw-r--r--tools/test/perform/sio_standalone.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/test/perform/sio_standalone.h b/tools/test/perform/sio_standalone.h
index e73a6b5..5ce922b 100644
--- a/tools/test/perform/sio_standalone.h
+++ b/tools/test/perform/sio_standalone.h
@@ -316,6 +316,7 @@ H5_DLL int HDfprintf (FILE *stream, const char *fmt, ...);
#define HDpipe(F) pipe(F)
#define HDpow(X,Y) pow(X,Y)
/* printf() variable arguments */
+#define HDprintf(...) HDfprintf(stdout, __VA_ARGS__)
#define HDputc(C,F) putc(C,F)
#define HDputchar(C) putchar(C)
#define HDputs(S) puts(S)
@@ -377,6 +378,7 @@ H5_DLL int c99_snprintf(char* str, size_t size, const char* format, ...);
#define HDsnprintf snprintf /*varargs*/
#endif
/* sprintf() variable arguments */
+#define HDsprintf sprintf /*varargs*/
#define HDsqrt(X) sqrt(X)
#ifdef H5_HAVE_RAND_R
H5_DLL void HDsrand(unsigned int seed);