diff options
author | ross <unknown> | 2004-03-30 17:54:28 +0000 |
---|---|---|
committer | ross <unknown> | 2004-03-30 17:54:28 +0000 |
commit | 7a1aff6f723c2ca69d431f4b0f201a171848509f (patch) | |
tree | 6f1d2542ab4118e8f1aa8d83f4f615ffda31e536 /libraries/base/Numeric.hs | |
parent | 24646d80c395ec632ce76bd4cc55da74eac7f065 (diff) | |
download | haskell-7a1aff6f723c2ca69d431f4b0f201a171848509f.tar.gz |
[project @ 2004-03-30 17:54:28 by ross]
fix a warning
Diffstat (limited to 'libraries/base/Numeric.hs')
-rw-r--r-- | libraries/base/Numeric.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/base/Numeric.hs b/libraries/base/Numeric.hs index bde290df10..d14c591731 100644 --- a/libraries/base/Numeric.hs +++ b/libraries/base/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__ |