diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2020-08-18 14:45:49 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2020-08-18 14:45:49 (GMT) |
commit | 41da55dfe836551936032a33aa7b0acb9d4dc7cb (patch) | |
tree | 5e5f3c74feeb0016647cc3faa08e5994045aab07 | |
parent | fe4fe14515ae5db886e4e2b10b50d7f12ca1320d (diff) | |
download | hdf5-41da55dfe836551936032a33aa7b0acb9d4dc7cb.zip hdf5-41da55dfe836551936032a33aa7b0acb9d4dc7cb.tar.gz hdf5-41da55dfe836551936032a33aa7b0acb9d4dc7cb.tar.bz2 |
Adds missing HDstrtoumax for S3 VFD
-rw-r--r-- | src/H5private.h | 3 |
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 */ |