summaryrefslogtreecommitdiff
path: root/rts
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2019-03-05 11:58:18 -0500
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-03-20 18:41:32 -0400
commitae382245ea65bf8824db7f4dbab5ade78e6ed9dd (patch)
tree196bbf78e0192c517d9abd96621539431289b52b /rts
parentf4d3aaaf318efa5a476bc35b16d0327e9d0a0b66 (diff)
downloadhaskell-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.c1
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)