diff options
author | Ian Lynagh <igloo@earth.li> | 2009-07-24 21:08:25 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-07-24 21:08:25 +0000 |
commit | 1e50fd4185479a62e02d987bdfcb1c62712859ca (patch) | |
tree | b586e107b36bd38cb7e93d7a6bd57191f4c46f15 /compiler/main/CodeOutput.lhs | |
parent | 52cacd61834e6f448b8904bfa52c4a5a402e8698 (diff) | |
download | haskell-1e50fd4185479a62e02d987bdfcb1c62712859ca.tar.gz |
Remove GHC's haskell98 dependency
Diffstat (limited to 'compiler/main/CodeOutput.lhs')
-rw-r--r-- | compiler/main/CodeOutput.lhs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/compiler/main/CodeOutput.lhs b/compiler/main/CodeOutput.lhs index 3c82ea7508..d362fb4984 100644 --- a/compiler/main/CodeOutput.lhs +++ b/compiler/main/CodeOutput.lhs @@ -33,10 +33,11 @@ import Outputable import Module import Maybes ( firstJust ) -import Directory ( doesFileExist ) -import Monad ( when ) -import IO +import Control.Exception +import Control.Monad +import System.Directory import System.FilePath +import System.IO \end{code} %************************************************************************ |