remove string.h

pull/2660/head
Alexander Medvednikov 2019-11-05 20:00:00 +03:00
parent 62f54d9d65
commit b929543782
1 changed files with 5 additions and 1 deletions

View File

@ -9,7 +9,7 @@ CommonCHeaders = '
#include "fns.h"
#include <stdarg.h> // for va_list
#include <inttypes.h> // int64_t etc
#include <string.h> // memcpy
//#include <string.h> // memcpy
#ifndef _WIN32
#include <ctype.h>
@ -22,6 +22,10 @@ CommonCHeaders = '
#endif
#endif
#if defined(__CYGWIN__) && !defined(_WIN32)
#error Cygwin is not supported, please use MinGW or Visual Studio.
#endif
#ifdef __linux__
#include <sys/types.h>