Move the Char datatype into ghc-prim
authorIan Lynagh <igloo@earth.li>
Tue, 5 Aug 2008 20:30:12 +0000 (20:30 +0000)
committerIan Lynagh <igloo@earth.li>
Tue, 5 Aug 2008 20:30:12 +0000 (20:30 +0000)
GHC/Types.hs

index 981cbfc..e43e376 100644 (file)
@@ -3,7 +3,11 @@
 
 module GHC.Types where
 
+import GHC.Prim
+
 infixr 5 :
 
 data [] a = [] | a : [a]
 
+data Char = C# Char#
+