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/utils/BufWrite.hs | |
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/utils/BufWrite.hs')
-rw-r--r-- | compiler/utils/BufWrite.hs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/compiler/utils/BufWrite.hs b/compiler/utils/BufWrite.hs index a03db3d084..049a698708 100644 --- a/compiler/utils/BufWrite.hs +++ b/compiler/utils/BufWrite.hs @@ -2,7 +2,7 @@ -- -- Fast write-buffered Handles -- --- (c) The University of Glasgow 2005 +-- (c) The University of Glasgow 2005-2006 -- -- This is a simple abstraction over Handles that offers very fast write -- buffering, but without the thread safety that Handles provide. It's used @@ -26,16 +26,16 @@ import FastString import FastMutInt import Panic ( panic ) -import Monad ( when ) -import Char ( ord ) +import Control.Monad ( when ) +import Data.Char ( ord ) import Foreign -import IO +import System.IO import GHC.IOBase ( IO(..) ) import System.IO ( hPutBuf ) import GHC.Ptr ( Ptr(..) ) -import GLAEXTS ( Int(..), Int#, Addr# ) +import GHC.Exts ( Int(..), Int#, Addr# ) -- ----------------------------------------------------------------------------- |