summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2024-10-22 12:09:57 +0000
committertb <>2024-10-22 12:09:57 +0000
commite931012e1dc8716dd767af2ce9bb44e63f9604a3 (patch)
treef548ce1cd3719ae5e4f5b569b807e7506a0633f6 /src
parent628c7a4ac6430a1490a15fd97ff4a94d9d8c708a (diff)
downloadopenbsd-e931012e1dc8716dd767af2ce9bb44e63f9604a3.tar.gz
openbsd-e931012e1dc8716dd767af2ce9bb44e63f9604a3.tar.bz2
openbsd-e931012e1dc8716dd767af2ce9bb44e63f9604a3.zip
ecp_oct.c: add missing includes
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/ec/ecp_oct.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/ec/ecp_oct.c b/src/lib/libcrypto/ec/ecp_oct.c
index b3cf44165d..133704bd7f 100644
--- a/src/lib/libcrypto/ec/ecp_oct.c
+++ b/src/lib/libcrypto/ec/ecp_oct.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ecp_oct.c,v 1.21 2023/04/18 18:29:32 tb Exp $ */ 1/* $OpenBSD: ecp_oct.c,v 1.22 2024/10/22 12:09:57 tb Exp $ */
2/* Includes code written by Lenka Fibikova <fibikova@exp-math.uni-essen.de> 2/* Includes code written by Lenka Fibikova <fibikova@exp-math.uni-essen.de>
3 * for the OpenSSL project. 3 * for the OpenSSL project.
4 * Includes code written by Bodo Moeller for the OpenSSL project. 4 * Includes code written by Bodo Moeller for the OpenSSL project.
@@ -62,6 +62,10 @@
62 * and contributed to the OpenSSL project. 62 * and contributed to the OpenSSL project.
63 */ 63 */
64 64
65#include <stddef.h>
66
67#include <openssl/bn.h>
68#include <openssl/ec.h>
65#include <openssl/err.h> 69#include <openssl/err.h>
66 70
67#include "ec_local.h" 71#include "ec_local.h"