From 33ec4904734fecfaf1eb1358084dac7cf841ceb3 Mon Sep 17 00:00:00 2001 From: "Kevin F. Haggerty" Date: Wed, 10 May 2017 00:14:16 -0600 Subject: [PATCH] scripts: Eliminate implicit delarations in fips_crypto_utils.c Change-Id: I6e41b31175141d7e2a763cb8f876279820983fcf Signed-off-by: Kevin F. Haggerty --- scripts/fips_crypto_utils.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/fips_crypto_utils.c b/scripts/fips_crypto_utils.c index d9b9ec8d9f5..ecdf29753dd 100644 --- a/scripts/fips_crypto_utils.c +++ b/scripts/fips_crypto_utils.c @@ -13,7 +13,12 @@ #include #include +#include +int collect_crypto_bytes(const char *in_file, const char *section_name, + unsigned long offset, unsigned long size, const char *out_file); +int update_crypto_hmac(const char *vmlinux_path, const char *hmac_path, + unsigned long offset); int main (int argc, char **argv) {