summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ec/ec_lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/ec/ec_lib.c')
-rw-r--r--src/lib/libcrypto/ec/ec_lib.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/ec/ec_lib.c b/src/lib/libcrypto/ec/ec_lib.c
index 423c5ac7e2..a16fe05c44 100644
--- a/src/lib/libcrypto/ec/ec_lib.c
+++ b/src/lib/libcrypto/ec/ec_lib.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ec_lib.c,v 1.75 2024/11/02 15:50:50 tb Exp $ */ 1/* $OpenBSD: ec_lib.c,v 1.76 2024/11/02 15:58:49 tb Exp $ */
2/* 2/*
3 * Originally written by Bodo Moeller for the OpenSSL project. 3 * Originally written by Bodo Moeller for the OpenSSL project.
4 */ 4 */
@@ -61,11 +61,15 @@
61 * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. 61 * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
62 */ 62 */
63 63
64#include <stdlib.h>
64#include <string.h> 65#include <string.h>
65 66
66#include <openssl/opensslconf.h> 67#include <openssl/opensslconf.h>
67 68
69#include <openssl/bn.h>
70#include <openssl/ec.h>
68#include <openssl/err.h> 71#include <openssl/err.h>
72#include <openssl/objects.h>
69#include <openssl/opensslv.h> 73#include <openssl/opensslv.h>
70 74
71#include "bn_local.h" 75#include "bn_local.h"