From 8c565fa86cfb89d20001d4fa1285e20e7bc0b970 Mon Sep 17 00:00:00 2001 From: Adam Langley Date: Mon, 20 Nov 2017 10:42:36 -0800 Subject: [PATCH] Include a couple of missing header files. mem.h for |OPENSSL_cleanse| and bn/internal.h for things like |bn_less_than_words| and |bn_correct_top|. Change-Id: I3c447a565dd9e4f18fb2ff5d59f80564b4df8cea Reviewed-on: https://boringssl-review.googlesource.com/23164 Reviewed-by: Adam Langley --- crypto/fipsmodule/bn/mul.c | 1 + crypto/fipsmodule/bn/random.c | 1 + 2 files changed, 2 insertions(+) diff --git a/crypto/fipsmodule/bn/mul.c b/crypto/fipsmodule/bn/mul.c index 3234e22f..b93f5587 100644 --- a/crypto/fipsmodule/bn/mul.c +++ b/crypto/fipsmodule/bn/mul.c @@ -60,6 +60,7 @@ #include #include +#include #include "internal.h" #include "../../internal.h" diff --git a/crypto/fipsmodule/bn/random.c b/crypto/fipsmodule/bn/random.c index 60d1bb02..e081a119 100644 --- a/crypto/fipsmodule/bn/random.c +++ b/crypto/fipsmodule/bn/random.c @@ -116,6 +116,7 @@ #include #include +#include "internal.h" #include "../../internal.h" #include "../rand/internal.h"