diff options
author | jsing <> | 2014-05-22 17:37:06 +0000 |
---|---|---|
committer | jsing <> | 2014-05-22 17:37:06 +0000 |
commit | 32a82f1d836ae0b4585960be533eecc2e39c1cb7 (patch) | |
tree | 5b8e9cc3ac60b5f781e37b5c9d7f19433c7cf396 /src/lib/libssl/pqueue.c | |
parent | 7c930e6398438c779870392401030d84b985b97f (diff) | |
download | openbsd-32a82f1d836ae0b4585960be533eecc2e39c1cb7.tar.gz openbsd-32a82f1d836ae0b4585960be533eecc2e39c1cb7.tar.bz2 openbsd-32a82f1d836ae0b4585960be533eecc2e39c1cb7.zip |
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 'src/lib/libssl/pqueue.c')
-rw-r--r-- | src/lib/libssl/pqueue.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/libssl/pqueue.c b/src/lib/libssl/pqueue.c index daf5e21b3a..af8530064f 100644 --- a/src/lib/libssl/pqueue.c +++ b/src/lib/libssl/pqueue.c | |||
@@ -57,7 +57,9 @@ | |||
57 | * | 57 | * |
58 | */ | 58 | */ |
59 | 59 | ||
60 | #include <stdlib.h> | ||
60 | #include <string.h> | 61 | #include <string.h> |
62 | |||
61 | #include "pqueue.h" | 63 | #include "pqueue.h" |
62 | 64 | ||
63 | typedef struct _pqueue { | 65 | typedef struct _pqueue { |