From: Alex Henrie alexhenrie24@gmail.com
Needed to compile Tera Term. --- include/msvcrt/corecrt_wstring.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/msvcrt/corecrt_wstring.h b/include/msvcrt/corecrt_wstring.h index 00e7863b5c3..bcf9f947625 100644 --- a/include/msvcrt/corecrt_wstring.h +++ b/include/msvcrt/corecrt_wstring.h @@ -59,6 +59,7 @@ _ACRTIMP errno_t __cdecl wcscpy_s(wchar_t*,size_t,const wchar_t*); _ACRTIMP size_t __cdecl wcscspn(const wchar_t*,const wchar_t*); _ACRTIMP size_t __cdecl wcslen(const wchar_t*); _ACRTIMP wchar_t* __cdecl wcsncat(wchar_t*,const wchar_t*,size_t); +_ACRTIMP errno_t __cdecl wcsncat_s(wchar_t*,size_t,const wchar_t*,size_t); _ACRTIMP int __cdecl wcsncmp(const wchar_t*,const wchar_t*,size_t); _ACRTIMP wchar_t* __cdecl wcsncpy(wchar_t*,const wchar_t*,size_t); _ACRTIMP errno_t __cdecl wcsncpy_s(wchar_t*,size_t,const wchar_t*,size_t);