X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Numeric.hs;h=66a4f21980838483ce433cf57c668187e4df68e2;hb=2b53d672df92d963e6fbfb1355a886a0674e256f;hp=9a2b6cca2f9dddf4a3d9cfeec7e368061244ea81;hpb=7de50399a42ee49b0473b7b6eea2b44a2f941a12;p=ghc-base.git diff --git a/Numeric.hs b/Numeric.hs index 9a2b6cc..66a4f21 100644 --- a/Numeric.hs +++ b/Numeric.hs @@ -1,3 +1,4 @@ +{-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- -- -- Module : Numeric @@ -8,7 +9,7 @@ -- Stability : provisional -- Portability : portable -- --- $Id: Numeric.hs,v 1.4 2002/02/05 17:32:24 simonmar Exp $ +-- $Id: Numeric.hs,v 1.5 2002/02/12 10:52:18 simonmar Exp $ -- -- Odds and ends, mostly functions for reading and showing -- RealFloat-like kind of values. @@ -44,14 +45,16 @@ module Numeric ( ) where -import Prelude -- For dependencies import Data.Char #ifdef __GLASGOW_HASKELL__ -import GHC.Base ( Char(..), unsafeChr ) +import GHC.Base import GHC.Read -import GHC.Real ( showSigned ) +import GHC.Real import GHC.Float +import GHC.Num +import GHC.Show +import Data.Maybe #endif #ifdef __HUGS__