commit | c053a707567204d45598e67b39e2bc35c1a80a1b | [log] [tgz] |
---|---|---|
author | Pali Rohár <pali.rohar@gmail.com> | Sun Jul 13 12:57:56 2025 +0200 |
committer | Martin Storsjö <martin@martin.st> | Fri Aug 01 19:53:09 2025 +0300 |
tree | 4e99262a15697abce0fad8cd6a5fe0f36fcaf2d3 | |
parent | e06f6cc64bfc69f90c170bdfaa3b1d7a34cb0f79 [diff] |
headers: Deduplicate *wprintf/*wscanf functions across UCRT/msvcrt builds All these functions have same declarations in #ifdef _UCRT and #else blocks. The only difference is that in non-UCRT block functions vfwscanf, vswscanf and vwscanf are declared without __cdecl. As all those functions are with __cdecl calling convenion, they should be declared with __cdecl. Signed-off-by: Martin Storsjö <martin@martin.st>