diff options
author | tb <> | 2023-11-27 22:39:26 +0000 |
---|---|---|
committer | tb <> | 2023-11-27 22:39:26 +0000 |
commit | 66d3b162a2dba87d414514da2d757b48e7defbbe (patch) | |
tree | 5b53c78770cfcf74ef673d1cfcf9182e5b8e2db3 | |
parent | 9819f99bb93e1bc06dce64dd3e6c14fa4a123fa6 (diff) | |
download | openbsd-66d3b162a2dba87d414514da2d757b48e7defbbe.tar.gz openbsd-66d3b162a2dba87d414514da2d757b48e7defbbe.tar.bz2 openbsd-66d3b162a2dba87d414514da2d757b48e7defbbe.zip |
EVP test: fix includes
Diffstat (limited to '')
-rw-r--r-- | src/regress/lib/libcrypto/evp/evp_test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regress/lib/libcrypto/evp/evp_test.c b/src/regress/lib/libcrypto/evp/evp_test.c index 88eb978ef3..9b6e18eec6 100644 --- a/src/regress/lib/libcrypto/evp/evp_test.c +++ b/src/regress/lib/libcrypto/evp/evp_test.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: evp_test.c,v 1.8 2023/11/27 22:29:51 tb Exp $ */ | 1 | /* $OpenBSD: evp_test.c,v 1.9 2023/11/27 22:39:26 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2022 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2022 Joel Sing <jsing@openbsd.org> |
4 | * Copyright (c) 2023 Theo Buehler <tb@openbsd.org> | 4 | * Copyright (c) 2023 Theo Buehler <tb@openbsd.org> |
@@ -20,11 +20,11 @@ | |||
20 | #include <stdio.h> | 20 | #include <stdio.h> |
21 | #include <string.h> | 21 | #include <string.h> |
22 | 22 | ||
23 | #include <openssl/crypto.h> | ||
23 | #include <openssl/evp.h> | 24 | #include <openssl/evp.h> |
25 | #include <openssl/objects.h> | ||
24 | #include <openssl/ossl_typ.h> | 26 | #include <openssl/ossl_typ.h> |
25 | 27 | ||
26 | #include "evp_local.h" | ||
27 | |||
28 | static int | 28 | static int |
29 | evp_asn1_method_test(void) | 29 | evp_asn1_method_test(void) |
30 | { | 30 | { |