diff options
author | tb <> | 2024-11-14 10:25:17 +0000 |
---|---|---|
committer | tb <> | 2024-11-14 10:25:17 +0000 |
commit | 0bd354b14b70178fcc4a6baa1ca870ae5ffad1ed (patch) | |
tree | b691671fa04a60bc3e33ff701db7964fbf06cd07 | |
parent | f5b482757682f8f52d57b4d595b2a8189114994f (diff) | |
download | openbsd-0bd354b14b70178fcc4a6baa1ca870ae5ffad1ed.tar.gz openbsd-0bd354b14b70178fcc4a6baa1ca870ae5ffad1ed.tar.bz2 openbsd-0bd354b14b70178fcc4a6baa1ca870ae5ffad1ed.zip |
eck_prn: fix includes
-rw-r--r-- | src/lib/libcrypto/ec/eck_prn.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ec/eck_prn.c b/src/lib/libcrypto/ec/eck_prn.c index 1756fb267d..6ff0eddbd7 100644 --- a/src/lib/libcrypto/ec/eck_prn.c +++ b/src/lib/libcrypto/ec/eck_prn.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: eck_prn.c,v 1.37 2024/11/14 10:22:45 tb Exp $ */ | 1 | /* $OpenBSD: eck_prn.c,v 1.38 2024/11/14 10:25:17 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Written by Nils Larsch for the OpenSSL project. | 3 | * Written by Nils Larsch for the OpenSSL project. |
4 | */ | 4 | */ |
@@ -62,13 +62,15 @@ | |||
62 | */ | 62 | */ |
63 | 63 | ||
64 | #include <stdio.h> | 64 | #include <stdio.h> |
65 | #include <string.h> | ||
66 | 65 | ||
66 | #include <openssl/bio.h> | ||
67 | #include <openssl/bn.h> | 67 | #include <openssl/bn.h> |
68 | #include <openssl/ec.h> | 68 | #include <openssl/ec.h> |
69 | #include <openssl/err.h> | 69 | #include <openssl/err.h> |
70 | #include <openssl/evp.h> | 70 | #include <openssl/evp.h> |
71 | #include <openssl/objects.h> | ||
71 | 72 | ||
73 | #include "bn_local.h" | ||
72 | #include "ec_local.h" | 74 | #include "ec_local.h" |
73 | 75 | ||
74 | int | 76 | int |