make Control.Monad.Instances compilable by nhc98
[haskell-directory.git] / GHC / Exts.hs
index fcc8a4a..651396a 100644 (file)
@@ -16,6 +16,7 @@ module GHC.Exts
        (
         -- * Representations of some basic types
         Int(..),Word(..),Float(..),Double(..),Integer(..),Char(..),
+       Ptr(..), FunPtr(..),
 
         -- * Primitive operations
         module GHC.Prim,
@@ -27,6 +28,12 @@ module GHC.Exts
        -- * Linear implicit parameter support
        Splittable(..),
 
+       -- * Debugging
+       breakpoint,
+
+       -- * Ids with special behaviour
+       lazy, inline,
+
        ) where
 
 import Prelude
@@ -36,6 +43,7 @@ import GHC.Base
 import GHC.Word
 import GHC.Num
 import GHC.Float
+import GHC.Ptr
 
 class Splittable t where
   split :: t -> (t,t)