From: Richard Levitte Date: Wed, 13 Jan 2016 19:25:08 +0000 (+0100) Subject: VMS C doesn't provide intmax_t/uinmax_t, use our own X-Git-Tag: OpenSSL_1_1_0-pre2~18 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6f84b383d3c19a1993f08cdfa9a23d7649161823;p=oweals%2Fopenssl.git VMS C doesn't provide intmax_t/uinmax_t, use our own Reviewed-by: Rich Salz --- diff --git a/include/openssl/ossl_typ.h b/include/openssl/ossl_typ.h index 059d386525..ebe091cf20 100644 --- a/include/openssl/ossl_typ.h +++ b/include/openssl/ossl_typ.h @@ -201,7 +201,8 @@ typedef struct ocsp_req_ctx_st OCSP_REQ_CTX; typedef struct ocsp_response_st OCSP_RESPONSE; typedef struct ocsp_responder_id_st OCSP_RESPID; -#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) \ + && !defined(OPENSSL_SYS_VMS); typedef intmax_t ossl_intmax_t; typedef uintmax_t ossl_uintmax_t; #else