diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-10-20 10:48:30 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-10-20 10:48:30 +0000 |
commit | 9d9dd356971edd4a5e513f5918a48c79da892261 (patch) | |
tree | 519561308f04d938e664933bfc98ac87400e9277 /lib/libcrypto/ec/ec_asn1.c | |
parent | 21b65f46e25f63d648147fd57defde81c2e923e8 (diff) |
ec_asn1: add missing includes
Diffstat (limited to 'lib/libcrypto/ec/ec_asn1.c')
-rw-r--r-- | lib/libcrypto/ec/ec_asn1.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/libcrypto/ec/ec_asn1.c b/lib/libcrypto/ec/ec_asn1.c index 548afb2d1a8..6e97d43c5c2 100644 --- a/lib/libcrypto/ec/ec_asn1.c +++ b/lib/libcrypto/ec/ec_asn1.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ec_asn1.c,v 1.75 2024/10/18 17:27:07 tb Exp $ */ +/* $OpenBSD: ec_asn1.c,v 1.76 2024/10/20 10:48:29 tb Exp $ */ /* * Written by Nils Larsch for the OpenSSL project. */ @@ -56,10 +56,14 @@ * */ -#include <string.h> +#include <stddef.h> +#include <stdlib.h> #include <openssl/opensslconf.h> +#include <openssl/asn1.h> +#include <openssl/bn.h> +#include <openssl/ec.h> #include <openssl/err.h> #include <openssl/asn1t.h> #include <openssl/objects.h> |