[project @ 2003-02-14 17:11:59 by sof]
[haskell-directory.git] / Data / Int.hs
index 7b57ae4..8e0e8bd 100644 (file)
@@ -25,7 +25,18 @@ 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)
 #endif
 
 {- $notes