[project @ 2005-02-13 10:53:13 by malcolm]
[ghc-base.git] / GHC / Exts.hs
index 6386932..4b014f1 100644 (file)
@@ -16,9 +16,10 @@ module GHC.Exts
        (
         -- * Representations of some basic types
         Int(..),Word(..),Float(..),Double(..),Integer(..),Char(..),
+       Ptr(..), FunPtr(..),
 
         -- * Primitive operations
-        module GHC.Prim
+        module GHC.Prim,
        shiftL#, shiftRL#, iShiftL#, iShiftRA#, iShiftRL#,
 
        -- * Fusion
@@ -36,6 +37,7 @@ import GHC.Base
 import GHC.Word
 import GHC.Num
 import GHC.Float
+import GHC.Ptr
 
 class Splittable t where
   split :: t -> (t,t)