diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-03-05 11:58:18 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-03-20 18:41:32 -0400 |
commit | ae382245ea65bf8824db7f4dbab5ade78e6ed9dd (patch) | |
tree | 196bbf78e0192c517d9abd96621539431289b52b /rts | |
parent | f4d3aaaf318efa5a476bc35b16d0327e9d0a0b66 (diff) | |
download | haskell-ae382245ea65bf8824db7f4dbab5ade78e6ed9dd.tar.gz |
rts/RtsSymbols: Drop __mingw_vsnwprintf
As described in #16387, this is already defined by mingw and
consequently defining it in the RTS as well leads to multiple definition
errors from the RTS linker at runtime.
Diffstat (limited to 'rts')
-rw-r--r-- | rts/RtsSymbols.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/rts/RtsSymbols.c b/rts/RtsSymbols.c index eb0322ed3e..5f99dde521 100644 --- a/rts/RtsSymbols.c +++ b/rts/RtsSymbols.c @@ -110,7 +110,6 @@ RTS_WIN64_ONLY(SymI_HasProto(__imp__environ)) \ RTS_WIN32_ONLY(SymI_HasProto(_imp___iob)) \ RTS_WIN64_ONLY(SymI_HasProto(__iob_func)) \ - RTS_WIN64_ONLY(SymI_HasProto(__mingw_vsnwprintf)) \ /* see Note [Symbols for MinGW's printf] */ \ SymI_HasProto(_lock_file) \ SymI_HasProto(_unlock_file) |