summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-07-07 02:13:40 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-07-07 15:49:55 (GMT)
commita8dc4bd93fad5ac70a1c99d291d3cc9738209639 (patch)
tree6854e86affa501313e00581ea046b6cb6d55e57a /tools
parent922e465b468ffc9a924fecaa3519b5e3e518b914 (diff)
downloadhdf5-a8dc4bd93fad5ac70a1c99d291d3cc9738209639.zip
hdf5-a8dc4bd93fad5ac70a1c99d291d3cc9738209639.tar.gz
hdf5-a8dc4bd93fad5ac70a1c99d291d3cc9738209639.tar.bz2
Always #define HDfprintf as fprintf in this header. I believe this will fix
the Windows build error that Allen reported.
Diffstat (limited to 'tools')
-rw-r--r--tools/test/perform/sio_standalone.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test/perform/sio_standalone.h b/tools/test/perform/sio_standalone.h
index 99e13bc..74a6245 100644
--- a/tools/test/perform/sio_standalone.h
+++ b/tools/test/perform/sio_standalone.h
@@ -151,7 +151,7 @@
#define HDfopen(S,M) fopen(S,M)
#define HDfork() fork()
#define HDfpathconf(F,N) fpathconf(F,N)
-H5_DLL int HDfprintf (FILE *stream, const char *fmt, ...);
+#define HDfprintf fprintf
#define HDfputc(C,F) fputc(C,F)
#define HDfputs(S,F) fputs(S,F)
#define HDfread(M,Z,N,F) fread(M,Z,N,F)