summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2020-08-18 14:45:49 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2020-08-18 14:45:49 (GMT)
commit41da55dfe836551936032a33aa7b0acb9d4dc7cb (patch)
tree5e5f3c74feeb0016647cc3faa08e5994045aab07 /src
parentfe4fe14515ae5db886e4e2b10b50d7f12ca1320d (diff)
downloadhdf5-41da55dfe836551936032a33aa7b0acb9d4dc7cb.zip
hdf5-41da55dfe836551936032a33aa7b0acb9d4dc7cb.tar.gz
hdf5-41da55dfe836551936032a33aa7b0acb9d4dc7cb.tar.bz2
Adds missing HDstrtoumax for S3 VFD
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 7793e0b..c16c461 100644
--- a/src/H5private.h
+++ b/src/H5private.h
@@ -1512,6 +1512,9 @@ typedef off_t h5_stat_size_t;
#ifndef HDstrtoull
#define HDstrtoull(S,R,N) strtoull(S,R,N)
#endif /* HDstrtoul */
+#ifndef HDstrtoumax
+ #define HDstrtoumax(S,R,N) strtoumax(S,R,N)
+#endif /* HDstrtoumax */
#ifndef HDstrxfrm
#define HDstrxfrm(X,Y,Z) strxfrm(X,Y,Z)
#endif /* HDstrxfrm */