From f7d6100ea619b9756a028138e3da0a6b62e92ee6 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 23 Feb 2018 17:38:46 -0500 Subject: [PATCH] se: Add missing string.h include 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"