summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2024-10-20 10:48:29 +0000
committertb <>2024-10-20 10:48:29 +0000
commitaf1ff563bc960206fbef6422627af4279a7840ff (patch)
tree1d0b4aab3d96671aece91492fe03c8f4ca56a436 /src
parent2569b1e97f0226323c62204154c42f8ca23c136a (diff)
downloadopenbsd-af1ff563bc960206fbef6422627af4279a7840ff.tar.gz
openbsd-af1ff563bc960206fbef6422627af4279a7840ff.tar.bz2
openbsd-af1ff563bc960206fbef6422627af4279a7840ff.zip
ec_asn1: add missing includes
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/ec/ec_asn1.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ec/ec_asn1.c b/src/lib/libcrypto/ec/ec_asn1.c
index 548afb2d1a..6e97d43c5c 100644
--- a/src/lib/libcrypto/ec/ec_asn1.c
+++ b/src/lib/libcrypto/ec/ec_asn1.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ec_asn1.c,v 1.75 2024/10/18 17:27:07 tb Exp $ */ 1/* $OpenBSD: ec_asn1.c,v 1.76 2024/10/20 10:48:29 tb Exp $ */
2/* 2/*
3 * Written by Nils Larsch for the OpenSSL project. 3 * Written by Nils Larsch for the OpenSSL project.
4 */ 4 */
@@ -56,10 +56,14 @@
56 * 56 *
57 */ 57 */
58 58
59#include <string.h> 59#include <stddef.h>
60#include <stdlib.h>
60 61
61#include <openssl/opensslconf.h> 62#include <openssl/opensslconf.h>
62 63
64#include <openssl/asn1.h>
65#include <openssl/bn.h>
66#include <openssl/ec.h>
63#include <openssl/err.h> 67#include <openssl/err.h>
64#include <openssl/asn1t.h> 68#include <openssl/asn1t.h>
65#include <openssl/objects.h> 69#include <openssl/objects.h>