diff options
| author | tb <> | 2024-10-28 17:00:51 +0000 |
|---|---|---|
| committer | tb <> | 2024-10-28 17:00:51 +0000 |
| commit | cc8cbe125c7c1cee0222aa801685474c25a5f2e2 (patch) | |
| tree | 47558f2dc8bbd305464e2e9d54165555807c1461 /src/lib/libcrypto | |
| parent | 730bd6df876d75e70540880970b284cf5ed5726c (diff) | |
| download | openbsd-cc8cbe125c7c1cee0222aa801685474c25a5f2e2.tar.gz openbsd-cc8cbe125c7c1cee0222aa801685474c25a5f2e2.tar.bz2 openbsd-cc8cbe125c7c1cee0222aa801685474c25a5f2e2.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/lib/libcrypto')
| -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 * |
