crt: Add `__ms_*` aliases for `*printf` and `*scanf` functions

These were generated using the following commands:

  _files=$(find . -name "msvcr*.def*")
  sed -Ei '/^__ms_fwprintf/d' $_files
  sed -Ei 's/^(v?[fs]?w?printf)$/\1\n__ms_\1 == \1/' $_files
  sed -Ei 's/^([fs]?w?scanf)$/\1\n__ms_\1 == \1/' $_files

This adds an exhaustive list of functions provided by MSVCRT.DLL
from Windows XP SP3.

These symbols make it possible to request MS behavior even when
<stdio.h> is included and __USE_MINGW_ANSI_STDIO is defined to 1.

Signed-off-by: Liu Hao <lh_mouse@126.com>
18 files changed