From 5f35ad01d525b3834ce610866244a942ee37c441 Mon Sep 17 00:00:00 2001 From: miod <> Date: Thu, 22 May 2014 20:16:03 +0000 Subject: Add explicit #include lines for stdio.h, stdlib.h and string.h; these files used to be pulled via which got removed, and it turns out that there is code in the wild which currently relies upon these headers to be brought in scope by including . Although such code needs to be fixed to not rely upon any system header being automagically included by including ssl headers, our goal is not to break code for the sake of it (ok, maybe from time to time). Hopefully, this commit can be reverted in a not-so-distant future. --- src/lib/libssl/dtls1.h | 3 +++ src/lib/libssl/src/ssl/dtls1.h | 3 +++ 2 files changed, 6 insertions(+) (limited to 'src/lib') diff --git a/src/lib/libssl/dtls1.h b/src/lib/libssl/dtls1.h index d91b6e6397..2fbb815b6d 100644 --- a/src/lib/libssl/dtls1.h +++ b/src/lib/libssl/dtls1.h @@ -61,6 +61,9 @@ #define HEADER_DTLS1_H #include +#include +#include +#include #include #ifdef __cplusplus diff --git a/src/lib/libssl/src/ssl/dtls1.h b/src/lib/libssl/src/ssl/dtls1.h index d91b6e6397..2fbb815b6d 100644 --- a/src/lib/libssl/src/ssl/dtls1.h +++ b/src/lib/libssl/src/ssl/dtls1.h @@ -61,6 +61,9 @@ #define HEADER_DTLS1_H #include +#include +#include +#include #include #ifdef __cplusplus -- cgit v1.2.3-55-g6feb