From 1f4785513a7efd4efbe8c304ce2dad45bfa1bc69 Mon Sep 17 00:00:00 2001 From: tb Date: Sun, 2 Jul 2023 02:28:20 +0000 Subject: [PATCH] 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. --- lib/libcrypto/ecdh/ech_key.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/libcrypto/ecdh/ech_key.c b/lib/libcrypto/ecdh/ech_key.c index 8418073f8ac..4c4a3f1c59a 100644 --- a/lib/libcrypto/ecdh/ech_key.c +++ b/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" -- 2.20.1