From: Ian Lynagh Date: Wed, 6 Aug 2008 16:55:49 +0000 (+0000) Subject: Fix a couple of imports X-Git-Url: http://git.megacz.com/?p=ghc-base.git;a=commitdiff_plain;h=39b3f52fb874e64fffb0082315a541e6870676f7 Fix a couple of imports --- diff --git a/Prelude.hs b/Prelude.hs index 813d252..76bc847 100644 --- a/Prelude.hs +++ b/Prelude.hs @@ -156,7 +156,7 @@ import Data.Tuple import GHC.Base import GHC.IOBase import GHC.Exception ( throw ) -import GHC.Read +import Text.Read import GHC.Enum import GHC.Num import GHC.Real diff --git a/System/IO.hs b/System/IO.hs index 93166b9..58b3e20 100644 --- a/System/IO.hs +++ b/System/IO.hs @@ -186,7 +186,7 @@ import GHC.Handle -- all the stuff exported by IO for the GHC version import GHC.IO import GHC.Exception import GHC.Num -import GHC.Read +import Text.Read import GHC.Show #endif