From 44a2b7a344312400114b0fd935a4946780699170 Mon Sep 17 00:00:00 2001 From: Mat M Date: Fri, 23 Feb 2018 19:09:55 -0500 Subject: [PATCH] smc_user: Add missing gcm.h include (#47) Resolves an implicit declaration warning for gcm_decrypt_key --- exosphere/smc_user.c | 1 + 1 file changed, 1 insertion(+) diff --git a/exosphere/smc_user.c b/exosphere/smc_user.c index b7cf28500..e4af21025 100644 --- a/exosphere/smc_user.c +++ b/exosphere/smc_user.c @@ -5,6 +5,7 @@ #include "utils.h" #include "cache.h" #include "configitem.h" +#include "gcm.h" #include "masterkey.h" #include "smc_api.h" #include "smc_user.h"