diff options
author | Tamar Christina <tamar@zhox.com> | 2019-09-08 23:11:19 +0100 |
---|---|---|
committer | Tamar Christina <tamar@zhox.com> | 2019-10-20 16:21:10 +0100 |
commit | 4b431f334018eaef2cf36de3316025c68c922915 (patch) | |
tree | 7f85d5a1a6bc6d39e9a8c51fe33904ff61461a7e /rts/RtsSymbols.h | |
parent | c4c9904b324736dc5d190a91418e8d8f564d4104 (diff) | |
download | haskell-4b431f334018eaef2cf36de3316025c68c922915.tar.gz |
Windows: Update tarballs to GCC 9.2 and remove MAX_PATH limit.
Diffstat (limited to 'rts/RtsSymbols.h')
-rw-r--r-- | rts/RtsSymbols.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rts/RtsSymbols.h b/rts/RtsSymbols.h index 650b1f5fed..b17c56e0dd 100644 --- a/rts/RtsSymbols.h +++ b/rts/RtsSymbols.h @@ -25,3 +25,8 @@ typedef struct _RtsSymbolVal { } RtsSymbolVal; extern RtsSymbolVal rtsSyms[]; + +/* See Note [_iob_func symbol]. */ +#if defined(mingw32_HOST_OS) +extern const void* __rts_iob_func; +#endif |