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)
This commit is contained in:
Richard Levitte 2021-05-20 09:42:22 +02:00
parent 6251895ca8
commit b54611922b
1 changed files with 5 additions and 0 deletions

View File

@ -19,6 +19,11 @@
# define strcasecmp _stricmp
# endif
# ifdef OPENSSL_SYS_VMS
# define strtoumax strtoull
# define strtoimax strtoll
# endif
typedef struct {
OSSL_PARAM *param;
int32_t i32;