diff options
author | tb <> | 2025-07-23 07:40:07 +0000 |
---|---|---|
committer | tb <> | 2025-07-23 07:40:07 +0000 |
commit | bd1c6229cd0441551e7acb92f1035d2fdcb35852 (patch) | |
tree | 3385df5d33e0473c1c34a8add1f1481a79f74315 /src | |
parent | 2f7a6d345a2d1764b253cf6531034448b5b62b6d (diff) | |
download | openbsd-bd1c6229cd0441551e7acb92f1035d2fdcb35852.tar.gz openbsd-bd1c6229cd0441551e7acb92f1035d2fdcb35852.tar.bz2 openbsd-bd1c6229cd0441551e7acb92f1035d2fdcb35852.zip |
ectest: fix includes
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libcrypto/ec/ectest.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/regress/lib/libcrypto/ec/ectest.c b/src/regress/lib/libcrypto/ec/ectest.c index fc44f9c886..3e81954174 100644 --- a/src/regress/lib/libcrypto/ec/ectest.c +++ b/src/regress/lib/libcrypto/ec/ectest.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ectest.c,v 1.35 2025/01/24 11:49:13 tb Exp $ */ | 1 | /* $OpenBSD: ectest.c,v 1.36 2025/07/23 07:40:07 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Originally written by Bodo Moeller for the OpenSSL project. | 3 | * Originally written by Bodo Moeller for the OpenSSL project. |
4 | */ | 4 | */ |
@@ -71,14 +71,11 @@ | |||
71 | 71 | ||
72 | #include <stdio.h> | 72 | #include <stdio.h> |
73 | #include <stdlib.h> | 73 | #include <stdlib.h> |
74 | #include <string.h> | ||
75 | #include <time.h> | ||
76 | 74 | ||
75 | #include <openssl/bn.h> | ||
76 | #include <openssl/crypto.h> | ||
77 | #include <openssl/ec.h> | 77 | #include <openssl/ec.h> |
78 | #include <openssl/err.h> | 78 | #include <openssl/err.h> |
79 | #include <openssl/obj_mac.h> | ||
80 | #include <openssl/objects.h> | ||
81 | #include <openssl/bn.h> | ||
82 | #include <openssl/opensslconf.h> | 79 | #include <openssl/opensslconf.h> |
83 | 80 | ||
84 | #define ABORT do { \ | 81 | #define ABORT do { \ |