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

index 2c6e251..a2c43c8 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ec_curve.c,v 1.47 2024/10/20 10:28:23 tb Exp $ */
+/* $OpenBSD: ec_curve.c,v 1.48 2024/10/20 10:45:49 tb Exp $ */
 /*
  * Written by Nils Larsch for the OpenSSL project.
  */
  */
 
 #include <limits.h>
+#include <stdint.h>
+#include <stdlib.h>
 #include <string.h>
 
 #include <openssl/opensslconf.h>
 
+#include <openssl/bn.h>
+#include <openssl/ec.h>
 #include <openssl/err.h>
 #include <openssl/objects.h>