From: ross Date: Tue, 30 Mar 2004 17:54:28 +0000 (+0000) Subject: [project @ 2004-03-30 17:54:28 by ross] X-Git-Tag: nhc98-1-18-release~332 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=c86c48d27d675536a8ddccecd364103a0d1aa6e5;p=haskell-directory.git [project @ 2004-03-30 17:54:28 by ross] fix a warning --- diff --git a/Numeric.hs b/Numeric.hs index bde290d..d14c591 100644 --- a/Numeric.hs +++ b/Numeric.hs @@ -42,8 +42,6 @@ module Numeric ( ) where -import Data.Char - #ifdef __GLASGOW_HASKELL__ import GHC.Base import GHC.Read @@ -54,6 +52,8 @@ import GHC.Show import Data.Maybe import Text.ParserCombinators.ReadP( ReadP, readP_to_S, pfail ) import qualified Text.Read.Lex as L +#else +import Data.Char #endif #ifdef __HUGS__