diff options
author | tb <> | 2025-07-23 07:42:33 +0000 |
---|---|---|
committer | tb <> | 2025-07-23 07:42:33 +0000 |
commit | 31d605f46aab13f0e4a1e4973687b175c7977232 (patch) | |
tree | fc1bacd3a65897113cce81247150ce69884904a4 /src | |
parent | bd1c6229cd0441551e7acb92f1035d2fdcb35852 (diff) | |
download | openbsd-31d605f46aab13f0e4a1e4973687b175c7977232.tar.gz openbsd-31d605f46aab13f0e4a1e4973687b175c7977232.tar.bz2 openbsd-31d605f46aab13f0e4a1e4973687b175c7977232.zip |
ec_asn1_test: fix includes
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libcrypto/ec/ec_asn1_test.c | 6 |
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> |