[project @ 1998-02-02 17:27:26 by simonm]
[ghc-hetmet.git] / ghc / lib / std / PrelBounded.lhs
similarity index 81%
rename from ghc/lib/ghc/PrelBounded.lhs
rename to ghc/lib/std/PrelBounded.lhs
index 59dc439..3d1d0fd 100644 (file)
@@ -21,6 +21,6 @@ instance  Bounded Char  where
     maxBound =  '\255'
 
 instance  Bounded Int where
-    minBound =  I# -2147483648#                -- GHC <= 2.09 had this at -2147483647
-    maxBound =  2147483647
+    minBound =  -2147483648            -- GHC <= 2.09 had this at -2147483647
+    maxBound =   2147483647
 \end{code}