diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-11-15 12:09:37 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-11-15 12:09:37 +0000 |
commit | 3989fb3ccf3fa91bf09d92e8e7e721d5454f5264 (patch) | |
tree | a708e05784ec29b9786eb69b05122cca11eab361 /lib | |
parent | bae92ec6e921e6f16d040d805a371e027dd9a23f (diff) |
ec_mult: fix includes
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/ec/ec_mult.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/libcrypto/ec/ec_mult.c b/lib/libcrypto/ec/ec_mult.c index d810879d687..7b626663378 100644 --- a/lib/libcrypto/ec/ec_mult.c +++ b/lib/libcrypto/ec/ec_mult.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ec_mult.c,v 1.33 2024/11/10 05:59:35 tb Exp $ */ +/* $OpenBSD: ec_mult.c,v 1.34 2024/11/15 12:09:36 tb Exp $ */ /* * Originally written by Bodo Moeller and Nils Larsch for the OpenSSL project. */ @@ -61,10 +61,13 @@ * and contributed to the OpenSSL project. */ -#include <string.h> +#include <stdlib.h> +#include <openssl/bn.h> +#include <openssl/ec.h> #include <openssl/err.h> +#include "bn_local.h" #include "ec_local.h" /* |