fix(test_renderer): Add include <string.h> as linux builds were giving warnings for implicit declaration of memset.

This commit is contained in:
Veikko Sariola 2020-11-12 19:50:59 +02:00
parent 1b1dabafb8
commit 6d883f43ab

View File

@ -3,6 +3,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <stdbool.h>
#include <string.h>
#if defined (_WIN32)
#include <windows.h>