summaryrefslogtreecommitdiffstats
path: root/test/big.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-29 15:18:49 (GMT)
committerGitHub <noreply@github.com>2023-06-29 15:18:49 (GMT)
commit8aef67f0ae3e037df22c5319eb2eac8b95521b19 (patch)
tree1286f3e2109b73a7040119779331814436110fae /test/big.c
parent9f430d15b004495d17826840ef1a4f281215c7f9 (diff)
downloadhdf5-8aef67f0ae3e037df22c5319eb2eac8b95521b19.zip
hdf5-8aef67f0ae3e037df22c5319eb2eac8b95521b19.tar.gz
hdf5-8aef67f0ae3e037df22c5319eb2eac8b95521b19.tar.bz2
Remove HD from strto* calls (#3204)
* HDstrtod * HDstrtol * HDstrtoll * HDstrtoul * HDstrtoull * HDstrtoumax
Diffstat (limited to 'test/big.c')
-rw-r--r--test/big.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/big.c b/test/big.c
index c582094..ef6bd5f 100644
--- a/test/big.c
+++ b/test/big.c
@@ -495,8 +495,8 @@ reader(char *filename, hid_t fapl)
while (HDfgets(ln, (int)sizeof(ln), script)) {
if ('#' != ln[0])
break;
- i = (int)HDstrtol(ln + 1, &s, 10);
- hs_offset[0] = HDstrtoull(s, NULL, 0);
+ i = (int)strtol(ln + 1, &s, 10);
+ hs_offset[0] = strtoull(s, NULL, 0);
fprintf(stdout, "#%03d 0x%016" PRIxHSIZE "%47s", i, hs_offset[0], "");
HDfflush(stdout);
@@ -741,7 +741,7 @@ main(int ac, char **av)
ac--;
av++;
if (ac > 0) {
- family_size_def = (hsize_t)HDstrtoull(*av, NULL, 0);
+ family_size_def = (hsize_t)strtoull(*av, NULL, 0);
}
else {
printf("***Missing fsize value***\n");