X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Data%2FInt.hs;h=67b4ba8d1280ed5aa9099313f6852cee6a0e88cf;hb=685432ac839f249ccd98bdf79fcf0c985872380b;hp=d189a3e0fed5bfdd7da3ce80e99a4d701af61a8d;hpb=a1829008e4cdf36a1ecdda221e52e94a2030464a;p=ghc-base.git diff --git a/Data/Int.hs b/Data/Int.hs index d189a3e..67b4ba8 100644 --- a/Data/Int.hs +++ b/Data/Int.hs @@ -1,4 +1,4 @@ -{-# OPTIONS_GHC -fno-implicit-prelude #-} +{-# OPTIONS_GHC -XNoImplicitPrelude #-} ----------------------------------------------------------------------------- -- | -- Module : Data.Int @@ -15,18 +15,18 @@ module Data.Int ( - -- * Signed integer types - Int, - Int8, Int16, Int32, Int64, + -- * Signed integer types + Int, + Int8, Int16, Int32, Int64, - -- * Notes + -- * Notes - -- $notes - ) where + -- $notes + ) where #ifdef __GLASGOW_HASKELL__ -import GHC.Base ( Int ) -import GHC.Int ( Int8, Int16, Int32, Int64 ) +import GHC.Base ( Int ) +import GHC.Int ( Int8, Int16, Int32, Int64 ) #endif #ifdef __HUGS__ @@ -37,7 +37,7 @@ import Hugs.Int ( Int8, Int16, Int32, Int64 ) import Prelude import Prelude (Int) import NHC.FFI (Int8, Int16, Int32, Int64) -import NHC.SizedTypes (Int8, Int16, Int32, Int64) -- instances of Bits +import NHC.SizedTypes (Int8, Int16, Int32, Int64) -- instances of Bits #endif {- $notes