diff options
author | Edward Z. Yang <ezyang@cs.stanford.edu> | 2014-09-09 12:03:48 -0700 |
---|---|---|
committer | Edward Z. Yang <ezyang@cs.stanford.edu> | 2014-10-01 22:26:38 -0700 |
commit | 644c76a3574a623fa5d2a9a28d8e6fc971aca901 (patch) | |
tree | f816137db0c51bb0ce6ef753d0ebcb1b97285ef1 /rts/RtsStartup.c | |
parent | 084d241b316bfa12e41fc34cae993ca276bf0730 (diff) | |
download | haskell-644c76a3574a623fa5d2a9a28d8e6fc971aca901.tar.gz |
Use LinkerInternals.h for exitLinker.
Part of remove HEAP_ALLOCED patch set (#8199)
Summary: Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu>
Test Plan: validate
Reviewers: simonmar, austin
Subscribers: simonmar, ezyang, carter, thomie
Differential Revision: https://phabricator.haskell.org/D262
GHC Trac Issues: #8199
Diffstat (limited to 'rts/RtsStartup.c')
-rw-r--r-- | rts/RtsStartup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/RtsStartup.c b/rts/RtsStartup.c index 0d0267a75c..98a43c0586 100644 --- a/rts/RtsStartup.c +++ b/rts/RtsStartup.c @@ -36,7 +36,7 @@ #include "Timer.h" #include "Globals.h" #include "FileLock.h" -void exitLinker( void ); // there is no Linker.h file to include +#include "LinkerInternals.h" #if defined(PROFILING) # include "ProfHeap.h" |