From 32a82f1d836ae0b4585960be533eecc2e39c1cb7 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Thu, 22 May 2014 17:37:06 +0000 Subject: Stop pulling pqueue.h into ssl_locl.h since only a small part of libssl actually needs it. Instead, just include it in the files where it is actually necessary. Also remove standard includes from pqueue.h so that they are not available as a side effect. Just add the two includes that are needed to pqueue.c. ok miod@ --- src/lib/libssl/d1_both.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/lib/libssl/d1_both.c') diff --git a/src/lib/libssl/d1_both.c b/src/lib/libssl/d1_both.c index 10b62cd410..0e32825695 100644 --- a/src/lib/libssl/d1_both.c +++ b/src/lib/libssl/d1_both.c @@ -123,6 +123,8 @@ #include #include +#include "pqueue.h" + #define RSMBLY_BITMASK_SIZE(msg_len) (((msg_len) + 7) / 8) #define RSMBLY_BITMASK_MARK(bitmask, start, end) { \ -- cgit v1.2.3-55-g6feb