summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2025-07-23 07:42:33 +0000
committertb <>2025-07-23 07:42:33 +0000
commit5de9c4261fdca291c0ca6e58a5f97f357c1bf696 (patch)
treefc1bacd3a65897113cce81247150ce69884904a4 /src
parent78681b5015172caf05505fe1526616c4b18d909c (diff)
downloadopenbsd-5de9c4261fdca291c0ca6e58a5f97f357c1bf696.tar.gz
openbsd-5de9c4261fdca291c0ca6e58a5f97f357c1bf696.tar.bz2
openbsd-5de9c4261fdca291c0ca6e58a5f97f357c1bf696.zip
ec_asn1_test: fix includes
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/ec/ec_asn1_test.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/ec/ec_asn1_test.c b/src/regress/lib/libcrypto/ec/ec_asn1_test.c
index 7dfe0012af..50e6304baf 100644
--- a/src/regress/lib/libcrypto/ec/ec_asn1_test.c
+++ b/src/regress/lib/libcrypto/ec/ec_asn1_test.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ec_asn1_test.c,v 1.35 2025/06/14 09:36:59 tb Exp $ */ 1/* $OpenBSD: ec_asn1_test.c,v 1.36 2025/07/23 07:42:33 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2017, 2021 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2017, 2021 Joel Sing <jsing@openbsd.org>
4 * Copyright (c) 2024, 2025 Theo Buehler <tb@openbsd.org> 4 * Copyright (c) 2024, 2025 Theo Buehler <tb@openbsd.org>
@@ -17,9 +17,13 @@
17 */ 17 */
18 18
19#include <err.h> 19#include <err.h>
20#include <stdio.h>
21#include <stdint.h>
22#include <stdlib.h>
20#include <string.h> 23#include <string.h>
21 24
22#include <openssl/bio.h> 25#include <openssl/bio.h>
26#include <openssl/bn.h>
23#include <openssl/ec.h> 27#include <openssl/ec.h>
24#include <openssl/err.h> 28#include <openssl/err.h>
25#include <openssl/objects.h> 29#include <openssl/objects.h>