[project @ 2004-09-22 08:37:01 by panne]
[ghc-base.git] / Data / Int.hs
index 7b57ae4..8d3b202 100644 (file)
@@ -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