From 41da55dfe836551936032a33aa7b0acb9d4dc7cb Mon Sep 17 00:00:00 2001 From: Dana Robinson Date: Tue, 18 Aug 2020 07:45:49 -0700 Subject: Adds missing HDstrtoumax for S3 VFD --- src/H5private.h | 3 +++ 1 file changed, 3 insertions(+) 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 */ -- cgit v0.12