untabify
authorDon Stewart <dons@galois.com>
Thu, 28 Feb 2008 18:53:56 +0000 (18:53 +0000)
committerDon Stewart <dons@galois.com>
Thu, 28 Feb 2008 18:53:56 +0000 (18:53 +0000)
Data/Int.hs

index d189a3e..ff077be 100644 (file)
 
 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