Closed
Description
The memcpy
, memmove
, memcmp
, strlen
, and memset
symbols in msvcrt
are just shims for implementations in ntdll.dll
, which have existed since Windows 3.1.
If possible, we should link against these directly, rather than going through msvcrt
. This would have the effect of eliminating all of our dependencies on msvcrt
except for math functions and the entry point.
cc @retep998