提交 6f84b383 编写于 作者: R Richard Levitte

VMS C doesn't provide intmax_t/uinmax_t, use our own

Reviewed-by: NRich Salz <rsalz@openssl.org>
上级 3aef36ff
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册