diff options
author | Tamar Christina <tamar@zhox.com> | 2016-12-10 15:33:53 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-12-10 15:33:54 -0500 |
commit | 0ac5a0082ae2840783b514f02f94ad0376bf8142 (patch) | |
tree | 956a7daa44c179e6930f992deb872c3a5e22ec23 /rts/RtsSymbols.c | |
parent | 17ac9b19438d5e8f6de33f99828e8c0e7c8c1129 (diff) | |
download | haskell-0ac5a0082ae2840783b514f02f94ad0376bf8142.tar.gz |
Add `_unlock_file` to RTS symbols
Reviewers: bgamari, austin, erikd, simonmar
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D2818
Diffstat (limited to 'rts/RtsSymbols.c')
-rw-r--r-- | rts/RtsSymbols.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rts/RtsSymbols.c b/rts/RtsSymbols.c index fdfbba3d02..848553095b 100644 --- a/rts/RtsSymbols.c +++ b/rts/RtsSymbols.c @@ -107,7 +107,8 @@ RTS_WIN32_ONLY(SymI_HasProto(_imp___iob)) \ RTS_WIN64_ONLY(SymI_HasProto(__iob_func)) \ /* see Note [Symbols for MinGW's printf] */ \ - SymI_HasProto(_lock_file) + SymI_HasProto(_lock_file) \ + SymI_HasProto(_unlock_file) #define RTS_MINGW_COMPAT_SYMBOLS \ SymI_HasProto_deprecated(access) \ |