summaryrefslogtreecommitdiff
path: root/lib/libcrypto/ec/ec_ameth.c
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2024-10-20 10:52:52 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2024-10-20 10:52:52 +0000
commit7df64166bcc136b009fa8a8d6f956621a20b7b31 (patch)
tree7f86d89460a2f08d9c85b6f6c746136c2af8fa04 /lib/libcrypto/ec/ec_ameth.c
parent9d9dd356971edd4a5e513f5918a48c79da892261 (diff)
ec_ameth.c: fix includes
Diffstat (limited to 'lib/libcrypto/ec/ec_ameth.c')
-rw-r--r--lib/libcrypto/ec/ec_ameth.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/libcrypto/ec/ec_ameth.c b/lib/libcrypto/ec/ec_ameth.c
index f42093c3dbe..a47110827e4 100644
--- a/lib/libcrypto/ec/ec_ameth.c
+++ b/lib/libcrypto/ec/ec_ameth.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ec_ameth.c,v 1.69 2024/08/29 16:58:19 tb Exp $ */
+/* $OpenBSD: ec_ameth.c,v 1.70 2024/10/20 10:52:51 tb Exp $ */
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
* project 2006.
*/
@@ -56,18 +56,24 @@
*
*/
-#include <stdio.h>
+#include <stddef.h>
+#include <stdlib.h>
#include <openssl/opensslconf.h>
+#include <openssl/asn1.h>
+#include <openssl/bio.h>
#include <openssl/bn.h>
#include <openssl/cms.h>
#include <openssl/ec.h>
#include <openssl/err.h>
+#include <openssl/evp.h>
+#include <openssl/pkcs7.h>
+#include <openssl/objects.h>
#include <openssl/x509.h>
#include "asn1_local.h"
-#include "ec_local.h"
+#include "bn_local.h"
#include "evp_local.h"
#include "x509_local.h"