1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

remove string.h

This commit is contained in:
Alexander Medvednikov 2019-11-05 20:00:00 +03:00
parent 62f54d9d65
commit b929543782

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>