diff options
author | Ian Lynagh <igloo@earth.li> | 2012-05-03 13:08:52 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-05-03 13:09:15 +0100 |
commit | 2bc9d896edb62174cd31c89e402b833e7b57bb59 (patch) | |
tree | 56d94f71a30ef5ad0d75f4534e18e8849c82c63c /rts | |
parent | dc4ae7b7684c7ff66649eebbfed1e57567161717 (diff) | |
download | haskell-2bc9d896edb62174cd31c89e402b833e7b57bb59.tar.gz |
Add _getpid to rtsSyms on Win64
Diffstat (limited to 'rts')
-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 229d45bd0d..ae77e6867a 100644 --- a/rts/Linker.c +++ b/rts/Linker.c @@ -560,6 +560,7 @@ typedef struct _RtsSymbolVal { RTS_WIN64_ONLY(SymI_NeedsProto(__imp_FlushConsoleInputBuffer)) \ RTS_WIN64_ONLY(SymI_HasProto(free)) \ RTS_WIN64_ONLY(SymI_NeedsProto(raise)) \ + RTS_WIN64_ONLY(SymI_NeedsProto(_getpid)) \ RTS_WIN64_ONLY(SymI_HasProto(getc)) \ RTS_WIN64_ONLY(SymI_HasProto(ungetc)) \ RTS_WIN64_ONLY(SymI_HasProto(puts)) \ |