Eina: include string.h on Windows as memcpy is used (fixes warning)

This commit is contained in:
Vincent Torri 2015-07-03 09:33:00 +02:00 committed by Tom Hacohen
parent 3a2dca7eac
commit ffb5a1f673
1 changed files with 3 additions and 0 deletions

View File

@ -21,6 +21,9 @@
#endif
#include <stdlib.h>
#ifdef _WIN32
# include <string.h>
#endif
#include "eina_config.h"
#include "eina_private.h"