diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-10-11 14:35:23 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-10-11 14:35:23 +0000 |
commit | 046ee54f048ddd721dcee41916d6a6f68db3b15b (patch) | |
tree | af3cf2046b70499d21ffd1d2fd1ca8f63951f41b /compiler/main/ErrUtils.lhs | |
parent | 5199290f732017432869c9939934871e62c50b74 (diff) | |
download | haskell-046ee54f048ddd721dcee41916d6a6f68db3b15b.tar.gz |
Module header tidyup #2
Push this further along, and fix build problems in the first patch.
Diffstat (limited to 'compiler/main/ErrUtils.lhs')
-rw-r--r-- | compiler/main/ErrUtils.lhs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/compiler/main/ErrUtils.lhs b/compiler/main/ErrUtils.lhs index 7bdb019b4c..4f8fa14f2e 100644 --- a/compiler/main/ErrUtils.lhs +++ b/compiler/main/ErrUtils.lhs @@ -37,9 +37,10 @@ import qualified Pretty import SrcLoc ( srcSpanStart, noSrcSpan ) import DynFlags ( DynFlags(..), DynFlag(..), dopt ) import StaticFlags ( opt_ErrorSpans ) -import System ( ExitCode(..), exitWith ) -import IO ( hPutStrLn, stderr ) -import DYNAMIC + +import System.Exit ( ExitCode(..), exitWith ) +import System.IO ( hPutStrLn, stderr ) +import Data.Dynamic -- ----------------------------------------------------------------------------- |