summaryrefslogtreecommitdiffstats
path: root/src/H5private.h
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2021-06-18 16:23:01 (GMT)
committerGitHub <noreply@github.com>2021-06-18 16:23:01 (GMT)
commita91c626c29dd18dbb23f0533a940b153dd4cad33 (patch)
treebf0cb9798a0ceaa7a42d72fb72e461a847348a38 /src/H5private.h
parent2e7750f837547ad9d6fa6b5565d24b1f313cc5a9 (diff)
downloadhdf5-a91c626c29dd18dbb23f0533a940b153dd4cad33.zip
hdf5-a91c626c29dd18dbb23f0533a940b153dd4cad33.tar.gz
hdf5-a91c626c29dd18dbb23f0533a940b153dd4cad33.tar.bz2
Removes checks and work-arounds for strtoll and strtoull (#769)
* Removes checks and work-arounds for strtoll and strtoull * Removes CMake checks for strtoll and strtoull
Diffstat (limited to 'src/H5private.h')
-rw-r--r--src/H5private.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/H5private.h b/src/H5private.h
index a1285ee..290d873 100644
--- a/src/H5private.h
+++ b/src/H5private.h
@@ -1526,11 +1526,7 @@ H5_DLL void HDsrand(unsigned int seed);
#define HDstrtol(S, R, N) strtol(S, R, N)
#endif /* HDstrtol */
#ifndef HDstrtoll
-#ifdef H5_HAVE_STRTOLL
#define HDstrtoll(S, R, N) strtoll(S, R, N)
-#else
-H5_DLL int64_t HDstrtoll(const char *s, const char **rest, int base);
-#endif /* H5_HAVE_STRTOLL */
#endif /* HDstrtoll */
#ifndef HDstrtoul
#define HDstrtoul(S, R, N) strtoul(S, R, N)
@@ -1631,7 +1627,7 @@ H5_DLL int64_t HDstrtoll(const char *s, const char **rest, int base);
#ifdef H5_HAVE_VASPRINTF
#define HDvasprintf(RET, FMT, A) vasprintf(RET, FMT, A)
#else
-H5_DLL int HDvasprintf(char **bufp, const char *fmt, va_list _ap);
+H5_DLL int HDvasprintf(char **bufp, const char *fmt, va_list _ap);
#endif /* H5_HAVE_VASPRINTF */
#endif /* HDvasprintf */
#ifndef HDva_arg