X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Data%2FInt.hs;h=8d3b202fc76e8dfef7cbd3738c2570e0debc4da0;hb=693c4e3ee8ce4b808054e5b9f38d11d08f572fb6;hp=7b57ae4774b93b30eeeb058bdfde1b84649f3f99;hpb=4aa4c78edf3cf4607ddeb669f536d646395ae9f0;p=ghc-base.git diff --git a/Data/Int.hs b/Data/Int.hs index 7b57ae4..8d3b202 100644 --- a/Data/Int.hs +++ b/Data/Int.hs @@ -25,7 +25,19 @@ module Data.Int ) where #ifdef __GLASGOW_HASKELL__ -import GHC.Int +import GHC.Base ( Int ) +import GHC.Int ( Int8, Int16, Int32, Int64 ) +#endif + +#ifdef __HUGS__ +import Hugs.Int ( Int8, Int16, Int32, Int64 ) +#endif + +#ifdef __NHC__ +import Prelude +import Prelude (Int) +import NHC.FFI (Int8, Int16, Int32, Int64) +import NHC.SizedTypes (Int8, Int16, Int32, Int64) -- instances of Bits #endif {- $notes