From 10994215a7ed3ad189a75ac64a4015cb0bdb2abd Mon Sep 17 00:00:00 2001 From: tb Date: Sun, 20 Oct 2024 10:52:51 +0000 Subject: [PATCH] ec_ameth.c: fix includes --- lib/libcrypto/ec/ec_ameth.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/lib/libcrypto/ec/ec_ameth.c b/lib/libcrypto/ec/ec_ameth.c index f42093c3dbe..a47110827e4 100644 --- a/lib/libcrypto/ec/ec_ameth.c +++ b/lib/libcrypto/ec/ec_ameth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ec_ameth.c,v 1.69 2024/08/29 16:58:19 tb Exp $ */ +/* $OpenBSD: ec_ameth.c,v 1.70 2024/10/20 10:52:51 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2006. */ @@ -56,18 +56,24 @@ * */ -#include +#include +#include #include +#include +#include #include #include #include #include +#include +#include +#include #include #include "asn1_local.h" -#include "ec_local.h" +#include "bn_local.h" #include "evp_local.h" #include "x509_local.h" -- 2.20.1