diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2021-01-11 18:26:26 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2021-01-11 18:26:26 +0000 |
commit | ba994d4d795a812b379ded0b6955b37593bb5f43 (patch) | |
tree | ce2704c65304132cbbf52a65aa1bfb66838de8cc /regress | |
parent | 183b188de81e486295455e8c626801518b45c47c (diff) |
Include headers used instead of relying on ssl.h pulling in the world.
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libssl/unit/ssl_get_shared_ciphers.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/regress/lib/libssl/unit/ssl_get_shared_ciphers.c b/regress/lib/libssl/unit/ssl_get_shared_ciphers.c index ad46e210e29..306cc6ac230 100644 --- a/regress/lib/libssl/unit/ssl_get_shared_ciphers.c +++ b/regress/lib/libssl/unit/ssl_get_shared_ciphers.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_get_shared_ciphers.c,v 1.3 2021/01/10 23:59:32 tb Exp $ */ +/* $OpenBSD: ssl_get_shared_ciphers.c,v 1.4 2021/01/11 18:26:25 tb Exp $ */ /* * Copyright (c) 2021 Theo Buehler <tb@openbsd.org> * @@ -16,7 +16,13 @@ */ #include <stdint.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +#include <openssl/bio.h> #include <openssl/err.h> +#include <openssl/crypto.h> #include <openssl/ssl.h> struct peer_config { |