summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-29 13:33:09 (GMT)
committerGitHub <noreply@github.com>2023-06-29 13:33:09 (GMT)
commitdd39b54c953854837cc316d80618f65fdb70a04a (patch)
tree6d7e2df3c2e57d977e44e1387ccbc15a48962fee /src
parenta90bdbbcfc6db6718d368fe7d0c570238e302bc7 (diff)
downloadhdf5-dd39b54c953854837cc316d80618f65fdb70a04a.zip
hdf5-dd39b54c953854837cc316d80618f65fdb70a04a.tar.gz
hdf5-dd39b54c953854837cc316d80618f65fdb70a04a.tar.bz2
Rename HDato*() to ato*() (#3201)
Diffstat (limited to 'src')
-rw-r--r--src/H5FDsubfiling/H5FDioc_threads.c2
-rw-r--r--src/H5FDsubfiling/H5FDsubfiling.c2
-rw-r--r--src/H5private.h12
3 files changed, 2 insertions, 14 deletions
diff --git a/src/H5FDsubfiling/H5FDioc_threads.c b/src/H5FDsubfiling/H5FDioc_threads.c
index e0d351f..fad5cf6 100644
--- a/src/H5FDsubfiling/H5FDioc_threads.c
+++ b/src/H5FDsubfiling/H5FDioc_threads.c
@@ -171,7 +171,7 @@ initialize_ioc_threads(void *_sf_context)
/* Allow experimentation with the number of helper threads */
if ((env_value = HDgetenv(H5FD_IOC_THREAD_POOL_SIZE)) != NULL) {
- int value_check = HDatoi(env_value);
+ int value_check = atoi(env_value);
if (value_check > 0) {
thread_pool_size = (unsigned int)value_check;
}
diff --git a/src/H5FDsubfiling/H5FDsubfiling.c b/src/H5FDsubfiling/H5FDsubfiling.c
index 20d617d..e234dc9 100644
--- a/src/H5FDsubfiling/H5FDsubfiling.c
+++ b/src/H5FDsubfiling/H5FDsubfiling.c
@@ -599,7 +599,7 @@ H5FD__subfiling_get_default_config(hid_t fapl_id, H5FD_subfiling_config_t *confi
config_out->shared_cfg.stripe_count = H5FD_SUBFILING_DEFAULT_STRIPE_COUNT;
if ((h5_require_ioc = HDgetenv("H5_REQUIRE_IOC")) != NULL) {
- int value_check = HDatoi(h5_require_ioc);
+ int value_check = atoi(h5_require_ioc);
if (value_check == 0)
config_out->require_ioc = FALSE;
}
diff --git a/src/H5private.h b/src/H5private.h
index ea28b51..843887e 100644
--- a/src/H5private.h
+++ b/src/H5private.h
@@ -620,18 +620,6 @@ typedef off_t h5_stat_size_t;
#ifndef HDatexit
#define HDatexit(F) atexit(F)
#endif
-#ifndef HDatof
-#define HDatof(S) atof(S)
-#endif
-#ifndef HDatoi
-#define HDatoi(S) atoi(S)
-#endif
-#ifndef HDatol
-#define HDatol(S) atol(S)
-#endif
-#ifndef HDatoll
-#define HDatoll(S) atoll(S)
-#endif
#ifndef HDceil
#define HDceil(X) ceil(X)
#endif