1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-10 06:01:52 +00:00

se: Add missing string.h include (#46)

Resolves implicit declaration warnings for memcpy and memset
This commit is contained in:
Mat M 2018-02-23 19:09:44 -05:00 committed by SciresM
parent 34d8a859ab
commit e3897bb731

View file

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