summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2024-10-20 10:45:49 +0000
committertb <>2024-10-20 10:45:49 +0000
commit2569b1e97f0226323c62204154c42f8ca23c136a (patch)
tree3266d7f614b9091a163707851639595b444b89fc /src
parent57f346841bd09face7410a6d4329996b22855001 (diff)
downloadopenbsd-2569b1e97f0226323c62204154c42f8ca23c136a.tar.gz
openbsd-2569b1e97f0226323c62204154c42f8ca23c136a.tar.bz2
openbsd-2569b1e97f0226323c62204154c42f8ca23c136a.zip
ec_curve: add missing includes
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/ec/ec_curve.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/ec/ec_curve.c b/src/lib/libcrypto/ec/ec_curve.c
index 2c6e251e7d..a2c43c82bb 100644
--- a/src/lib/libcrypto/ec/ec_curve.c
+++ b/src/lib/libcrypto/ec/ec_curve.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ec_curve.c,v 1.47 2024/10/20 10:28:23 tb Exp $ */ 1/* $OpenBSD: ec_curve.c,v 1.48 2024/10/20 10:45:49 tb Exp $ */
2/* 2/*
3 * Written by Nils Larsch for the OpenSSL project. 3 * Written by Nils Larsch for the OpenSSL project.
4 */ 4 */
@@ -70,10 +70,14 @@
70 */ 70 */
71 71
72#include <limits.h> 72#include <limits.h>
73#include <stdint.h>
74#include <stdlib.h>
73#include <string.h> 75#include <string.h>
74 76
75#include <openssl/opensslconf.h> 77#include <openssl/opensslconf.h>
76 78
79#include <openssl/bn.h>
80#include <openssl/ec.h>
77#include <openssl/err.h> 81#include <openssl/err.h>
78#include <openssl/objects.h> 82#include <openssl/objects.h>
79 83