diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2018-11-08 20:38:26 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2018-11-08 20:38:26 +0000 |
commit | 10dfbac13bc3c0aa0fc8926a69dba4aff8b8cf08 (patch) | |
tree | 14229d22aadd1d4974ce8ad6011d2359bbaf70dc /lib/libssl/tls13_internal.h | |
parent | f1f0c869ab7adf3892804d8ec350f8c11faa4826 (diff) |
Move #include <openssl/evp.h> to the header.
discussed with beck and jsing
Diffstat (limited to 'lib/libssl/tls13_internal.h')
-rw-r--r-- | lib/libssl/tls13_internal.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libssl/tls13_internal.h b/lib/libssl/tls13_internal.h index b1d24ef02b6..6172ac25c9c 100644 --- a/lib/libssl/tls13_internal.h +++ b/lib/libssl/tls13_internal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tls13_internal.h,v 1.1 2018/11/07 19:43:12 beck Exp $ */ +/* $OpenBSD: tls13_internal.h,v 1.2 2018/11/08 20:38:25 tb Exp $ */ /* Copyright (c) 2018, Bob Beck <beck@openbsd.org> * * Permission to use, copy, modify, and/or distribute this software for any @@ -14,6 +14,8 @@ * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include <openssl/evp.h> + struct tls13_secret { uint8_t *data; size_t len; |