diff options
author | tb <> | 2024-11-15 12:09:36 +0000 |
---|---|---|
committer | tb <> | 2024-11-15 12:09:36 +0000 |
commit | 00d406aeea0b66f7f4205870c7cef172c459660d (patch) | |
tree | 4ad5ea2b97bd7f10b5d130a0bf10cd3c96ef2aed /src/lib | |
parent | 636afcedc4ba1da9edad50f789eccdd0549bcf94 (diff) | |
download | openbsd-00d406aeea0b66f7f4205870c7cef172c459660d.tar.gz openbsd-00d406aeea0b66f7f4205870c7cef172c459660d.tar.bz2 openbsd-00d406aeea0b66f7f4205870c7cef172c459660d.zip |
ec_mult: fix includes
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/ec/ec_mult.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ec/ec_mult.c b/src/lib/libcrypto/ec/ec_mult.c index d810879d68..7b62666337 100644 --- a/src/lib/libcrypto/ec/ec_mult.c +++ b/src/lib/libcrypto/ec/ec_mult.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ec_mult.c,v 1.33 2024/11/10 05:59:35 tb Exp $ */ | 1 | /* $OpenBSD: ec_mult.c,v 1.34 2024/11/15 12:09:36 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Originally written by Bodo Moeller and Nils Larsch for the OpenSSL project. | 3 | * Originally written by Bodo Moeller and Nils Larsch for the OpenSSL project. |
4 | */ | 4 | */ |
@@ -61,10 +61,13 @@ | |||
61 | * and contributed to the OpenSSL project. | 61 | * and contributed to the OpenSSL project. |
62 | */ | 62 | */ |
63 | 63 | ||
64 | #include <string.h> | 64 | #include <stdlib.h> |
65 | 65 | ||
66 | #include <openssl/bn.h> | ||
67 | #include <openssl/ec.h> | ||
66 | #include <openssl/err.h> | 68 | #include <openssl/err.h> |
67 | 69 | ||
70 | #include "bn_local.h" | ||
68 | #include "ec_local.h" | 71 | #include "ec_local.h" |
69 | 72 | ||
70 | /* | 73 | /* |