ec_asn1: add missing includes
authortb <tb@openbsd.org>
Sun, 20 Oct 2024 10:48:29 +0000 (10:48 +0000)
committertb <tb@openbsd.org>
Sun, 20 Oct 2024 10:48:29 +0000 (10:48 +0000)
lib/libcrypto/ec/ec_asn1.c

index 548afb2..6e97d43 100644 (file)
@@ -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.
  */
  *
  */
 
-#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>