diff options
author | sof <unknown> | 2004-08-03 19:45:11 +0000 |
---|---|---|
committer | sof <unknown> | 2004-08-03 19:45:11 +0000 |
commit | 919c47c69a5f14c95e91728cc2b2cdb4437b2ee0 (patch) | |
tree | 3a01c69e08cd557f636303b47973b285bb13bbba /src/HaddockHtml.hs | |
parent | dd5f394e3fe1e83321a7fc70387306a133ed1eb2 (diff) |
[haddock @ 2004-08-03 19:45:11 by sof]
make it compile with <= ghc-6.1
Diffstat (limited to 'src/HaddockHtml.hs')
-rw-r--r-- | src/HaddockHtml.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/HaddockHtml.hs b/src/HaddockHtml.hs index 3cb55ce9..ffd9da47 100644 --- a/src/HaddockHtml.hs +++ b/src/HaddockHtml.hs @@ -25,9 +25,12 @@ import List ( sortBy ) import Char ( isUpper, toUpper ) import Monad ( when, unless ) + import Foreign import Control.Exception ( handle, bracket ) -import System.IO + +import Binary ( openBinaryFile ) +import System.IO ( IOMode(..), hClose, hGetBuf, hPutBuf ) #if __GLASGOW_HASKELL__ < 503 import FiniteMap |