Add explicit #include lines for stdio.h, stdlib.h and string.h; these files
authormiod <miod@openbsd.org>
Thu, 22 May 2014 20:16:03 +0000 (20:16 +0000)
committermiod <miod@openbsd.org>
Thu, 22 May 2014 20:16:03 +0000 (20:16 +0000)
used to be pulled via <openssl/pqueue.h> 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 <openssl/dtls1.h>.

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.

lib/libssl/dtls1.h
lib/libssl/src/ssl/dtls1.h

index d91b6e6..2fbb815 100644 (file)
@@ -61,6 +61,9 @@
 #define HEADER_DTLS1_H
 
 #include <openssl/buffer.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
 #include <sys/time.h>
 
 #ifdef  __cplusplus
index d91b6e6..2fbb815 100644 (file)
@@ -61,6 +61,9 @@
 #define HEADER_DTLS1_H
 
 #include <openssl/buffer.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
 #include <sys/time.h>
 
 #ifdef  __cplusplus