diff options
author | Ian Lynagh <igloo@earth.li> | 2012-06-16 21:40:26 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-06-16 21:40:26 +0100 |
commit | 78f588c1d248e10bec137f1a2d52e4421e36ab66 (patch) | |
tree | c1925547bd60cd1b7d411cf65a762bee19385583 | |
parent | 6181e007f0e1e8eddba7acf0d5fbcbaf46806249 (diff) | |
download | haskell-78f588c1d248e10bec137f1a2d52e4421e36ab66.tar.gz |
Fix build on win64
-rw-r--r-- | rts/Linker.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rts/Linker.c b/rts/Linker.c index de9d5ce244..eb3dc1d111 100644 --- a/rts/Linker.c +++ b/rts/Linker.c @@ -540,6 +540,7 @@ typedef struct _RtsSymbolVal { RTS_WIN64_ONLY(SymI_NeedsProto(__imp__fstat64)) \ RTS_WIN64_ONLY(SymI_NeedsProto(__imp__wsopen)) \ RTS_WIN64_ONLY(SymI_HasProto(__imp__environ)) \ + RTS_WIN64_ONLY(SymI_NeedsProto(__imp_GetFileAttributesA)) \ RTS_WIN64_ONLY(SymI_NeedsProto(__imp_GetFileInformationByHandle)) \ RTS_WIN64_ONLY(SymI_NeedsProto(__imp_GetFileType)) \ RTS_WIN64_ONLY(SymI_NeedsProto(__imp_GetLastError)) \ |