diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-22 17:37:07 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-22 17:37:07 +0000 |
commit | 01f92dc24d39b8b81e443ef52e345c6653c32486 (patch) | |
tree | a6db02a5a9c57f84c92406abeb913ce188015966 /lib/libssl/d1_both.c | |
parent | 2904d7dcbeb5d994372df74446a382da10e258a8 (diff) |
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@
Diffstat (limited to 'lib/libssl/d1_both.c')
-rw-r--r-- | lib/libssl/d1_both.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libssl/d1_both.c b/lib/libssl/d1_both.c index 10b62cd4104..0e328256959 100644 --- a/lib/libssl/d1_both.c +++ b/lib/libssl/d1_both.c @@ -123,6 +123,8 @@ #include <openssl/evp.h> #include <openssl/x509.h> +#include "pqueue.h" + #define RSMBLY_BITMASK_SIZE(msg_len) (((msg_len) + 7) / 8) #define RSMBLY_BITMASK_MARK(bitmask, start, end) { \ |