se: Add missing string.h include

Resolves implicit declaration warnings for memcpy and memset
This commit is contained in:
Lioncash 2018-02-23 17:38:46 -05:00
parent dbf2eb7ed1
commit f7d6100ea6
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7

View File

@ -1,5 +1,6 @@
#include <stdint.h>
#include <stddef.h> #include <stddef.h>
#include <stdint.h>
#include <string.h>
#include "utils.h" #include "utils.h"
#include "mmu.h" #include "mmu.h"