From 94225cf59ec50e356e2c090bcbe76e1635e6d565 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 11 May 2017 20:20:07 +0200 Subject: [PATCH] Cleanup - use e_os2.h rather than stdint.h Not exactly everywhere, but in those source files where stdint.h is included conditionally, or where it will be eventually Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/3447) (cherry picked from commit 74a011ebb5e9028ef18982d737a434a8ff926a95) --- crypto/ec/ecp_nistp521.c | 8 +------- include/openssl/bio.h | 6 +----- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/crypto/ec/ecp_nistp521.c b/crypto/ec/ecp_nistp521.c index 7207494b8d..4701d5d5c8 100644 --- a/crypto/ec/ecp_nistp521.c +++ b/crypto/ec/ecp_nistp521.c @@ -31,17 +31,11 @@ * work which got its smarts from Daniel J. Bernstein's work on the same. */ -#include +#include #ifdef OPENSSL_NO_EC_NISTP_64_GCC_128 NON_EMPTY_TRANSLATION_UNIT #else -# ifndef OPENSSL_SYS_VMS -# include -# else -# include -# endif - # include # include # include "ec_lcl.h" diff --git a/include/openssl/bio.h b/include/openssl/bio.h index 6d45101cc7..781285157b 100644 --- a/include/openssl/bio.h +++ b/include/openssl/bio.h @@ -20,11 +20,7 @@ # include # ifndef OPENSSL_NO_SCTP -# ifndef OPENSSL_SYS_VMS -# include -# else -# include -# endif +# include # endif #ifdef __cplusplus -- 2.25.1