summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ec/ec_mult.c
diff options
context:
space:
mode:
authortb <>2024-11-15 12:09:36 +0000
committertb <>2024-11-15 12:09:36 +0000
commitaa74fdda2b8504c32421455f7844c411aa70eeee (patch)
tree4ad5ea2b97bd7f10b5d130a0bf10cd3c96ef2aed /src/lib/libcrypto/ec/ec_mult.c
parent2fccd030cb43ee63680342ece2969aa605002276 (diff)
downloadopenbsd-aa74fdda2b8504c32421455f7844c411aa70eeee.tar.gz
openbsd-aa74fdda2b8504c32421455f7844c411aa70eeee.tar.bz2
openbsd-aa74fdda2b8504c32421455f7844c411aa70eeee.zip
ec_mult: fix includes
Diffstat (limited to 'src/lib/libcrypto/ec/ec_mult.c')
-rw-r--r--src/lib/libcrypto/ec/ec_mult.c7
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/*