From ad1eb5502140e941bb8cb25d1500a875534b04b7 Mon Sep 17 00:00:00 2001 From: tb <> Date: Sun, 2 Jul 2023 02:28:20 +0000 Subject: ech_key.c: Fix includes We need stdint.h for uintptr_t, stdlib.h for malloc, ec.h for various things, but there's no need for objects. or sha.h. --- src/lib/libcrypto/ecdh/ech_key.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/lib/libcrypto/ecdh/ech_key.c b/src/lib/libcrypto/ecdh/ech_key.c index 8418073f8a..4c4a3f1c59 100644 --- a/src/lib/libcrypto/ecdh/ech_key.c +++ b/src/lib/libcrypto/ecdh/ech_key.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ech_key.c,v 1.29 2023/07/01 15:10:28 tb Exp $ */ +/* $OpenBSD: ech_key.c,v 1.30 2023/07/02 02:28:20 tb Exp $ */ /* ==================================================================== * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. * @@ -68,15 +68,16 @@ */ #include +#include +#include #include #include #include +#include #include #include -#include -#include #include "ec_local.h" -- cgit v1.2.3-55-g6feb