diff options
author | tb <> | 2024-10-28 17:00:51 +0000 |
---|---|---|
committer | tb <> | 2024-10-28 17:00:51 +0000 |
commit | 59817a3dadd5dbc44806d415e5ddb7f6eb85fcbf (patch) | |
tree | 47558f2dc8bbd305464e2e9d54165555807c1461 /src | |
parent | 4c8b858d05578bf736cf2c4ce294fe0ee77ed482 (diff) | |
download | openbsd-59817a3dadd5dbc44806d415e5ddb7f6eb85fcbf.tar.gz openbsd-59817a3dadd5dbc44806d415e5ddb7f6eb85fcbf.tar.bz2 openbsd-59817a3dadd5dbc44806d415e5ddb7f6eb85fcbf.zip |
ec_print.c: fix includes.
It doesn't currently need ec_local.h, but it will soon, so leave it there.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/ec/ec_print.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ec/ec_print.c b/src/lib/libcrypto/ec/ec_print.c index fcd1570492..d0c9585007 100644 --- a/src/lib/libcrypto/ec/ec_print.c +++ b/src/lib/libcrypto/ec/ec_print.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ec_print.c,v 1.14 2023/11/21 22:17:15 tb Exp $ */ | 1 | /* $OpenBSD: ec_print.c,v 1.15 2024/10/28 17:00:51 tb Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -53,7 +53,11 @@ | |||
53 | * | 53 | * |
54 | */ | 54 | */ |
55 | 55 | ||
56 | #include <openssl/crypto.h> | 56 | #include <stdlib.h> |
57 | |||
58 | #include <openssl/bn.h> | ||
59 | #include <openssl/ec.h> | ||
60 | |||
57 | #include "ec_local.h" | 61 | #include "ec_local.h" |
58 | 62 | ||
59 | BIGNUM * | 63 | BIGNUM * |