From e3897bb731acfd85361df50e1a9909a8501efb1c Mon Sep 17 00:00:00 2001 From: Mat M Date: Fri, 23 Feb 2018 19:09:44 -0500 Subject: [PATCH] se: Add missing string.h include (#46) Resolves implicit declaration warnings for memcpy and memset --- exosphere/se.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/exosphere/se.c b/exosphere/se.c index c70fdd94a..86e4a928d 100644 --- a/exosphere/se.c +++ b/exosphere/se.c @@ -1,5 +1,6 @@ -#include #include +#include +#include #include "utils.h" #include "mmu.h"