summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-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/*