[project @ 2000-04-03 15:52:53 by simonmar]
[ghc-hetmet.git] / ghc / lib / std / Char.lhs
index b00345d..442b84e 100644 (file)
@@ -32,8 +32,14 @@ module Char
      -- Implementation checked wrt. Haskell 98 lib report, 1/99.
     ) where
 
+#ifndef __HUGS__
 import PrelBase
+import PrelShow
+import PrelEnum
+import PrelNum
 import PrelRead (readLitChar, lexLitChar, digitToInt)
-import {-# SOURCE #-} PrelErr   ( error )
-
+import PrelErr  ( error )
+#else
+isLatin1 c = True
+#endif
 \end{code}