]> git.ipfire.org Git - thirdparty/openssl.git/commit
test/params_conversion_test.c: fix the use of strtoumax and strtoimax on VMS
authorRichard Levitte <levitte@openssl.org>
Thu, 20 May 2021 07:42:22 +0000 (09:42 +0200)
committerRichard Levitte <levitte@openssl.org>
Sat, 22 May 2021 05:23:47 +0000 (07:23 +0200)
commitb54611922b5eb760bd64de0c8edfeb13ae81fa65
tree44f46ca2c8a99193eb2157e8dfe02600cb060068
parent6251895ca8f816a7a8b234eb7f0842fcff2937f4
test/params_conversion_test.c: fix the use of strtoumax and strtoimax on VMS

We do this by making them aliases for strtoull and strtoll, since long
long is the current largest integer that have this sort of routine on
VMS.

Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15366)
test/params_conversion_test.c