commit | b1de317aab3a3cf79606535edd126a565ddd284e | [log] [tgz] |
---|---|---|
author | Martin Storsjö <martin@martin.st> | Wed Oct 17 21:50:17 2018 +0300 |
committer | Martin Storsjö <martin@martin.st> | Thu Oct 18 22:46:08 2018 +0300 |
tree | b9fd2d7c0ceaa3b3944c4c12f1ebf05055d09547 | |
parent | 7e9a76e960442776f997b38eecae48c190a48590 [diff] |
ucrt: Move _snwprintf and fwprintf to separate translation units These are normally only referenced by objects in libmingwex. However, ntdll also contains the function _snwprintf. Depending on the order that object files and libraries are linked, this could lead to multiple definition errors. By moving them to separate object files, they won't be forcibly included by other symbols. Signed-off-by: Martin Storsjö <martin@martin.st>