summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ec
diff options
context:
space:
mode:
authorkenjiro <>2026-07-31 00:50:52 +0000
committerkenjiro <>2026-07-31 00:50:52 +0000
commite1b703522865e8996212ffc767bc616d3a7bc7b0 (patch)
tree04d3ad9ad4f09bcdb811daf80f2774e6d828e985 /src/lib/libcrypto/ec
parent3d5c26fca686ebb3960c3fa26ceab85b5a95c559 (diff)
downloadopenbsd-e1b703522865e8996212ffc767bc616d3a7bc7b0.tar.gz
openbsd-e1b703522865e8996212ffc767bc616d3a7bc7b0.tar.bz2
openbsd-e1b703522865e8996212ffc767bc616d3a7bc7b0.zip
Add missing internal header includes
Include the relevant internal headers in implementation files that define internal functions. Also make asn1_local.h and pkcs12_local.h self-contained by including their corresponding public headers. ok tb beck
Diffstat (limited to 'src/lib/libcrypto/ec')
-rw-r--r--src/lib/libcrypto/ec/ec_ameth.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/ec/ec_ameth.c b/src/lib/libcrypto/ec/ec_ameth.c
index ddc8adea1e..d1654d4041 100644
--- a/src/lib/libcrypto/ec/ec_ameth.c
+++ b/src/lib/libcrypto/ec/ec_ameth.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ec_ameth.c,v 1.74 2025/05/10 05:54:38 tb Exp $ */ 1/* $OpenBSD: ec_ameth.c,v 1.75 2026/07/31 00:50:52 kenjiro Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 2006. 3 * project 2006.
4 */ 4 */
@@ -73,6 +73,7 @@
73 73
74#include "asn1_local.h" 74#include "asn1_local.h"
75#include "bn_local.h" 75#include "bn_local.h"
76#include "ec_local.h"
76#include "err_local.h" 77#include "err_local.h"
77#include "evp_local.h" 78#include "evp_local.h"
78#include "x509_local.h" 79#include "x509_local.h"