[CRT] mem/: Fix msvc14.0-amd64 build

Addendum to aea4cfb.
This commit is contained in:
Serge Gautherie 2020-06-14 13:49:22 +02:00 committed by Victor Perevertkin
parent bf4d47d969
commit 1449523c6d
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#include <string.h>
#if defined(_MSC_VER)
#if defined(_MSC_VER) && (_MSC_VER >= 1910 || !defined(_WIN64))
#pragma function(memchr)
#endif /* _MSC_VER */

View File

@ -1,6 +1,6 @@
#include <string.h>
#if defined(_MSC_VER)
#if defined(_MSC_VER) && (_MSC_VER >= 1910 || !defined(_WIN64))
#pragma function(memmove)
#endif /* _MSC_VER */