From: simonmar Date: Tue, 27 Aug 2002 14:44:31 +0000 (+0000) Subject: [project @ 2002-08-27 14:44:31 by simonmar] X-Git-Tag: nhc98-1-18-release~902 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=0dd5b8bb28ea562e6ccfcc98950a50d8fa6988bb;p=ghc-base.git [project @ 2002-08-27 14:44:31 by simonmar] We really should export the representations of Ptr and FunPtr from here. --- diff --git a/GHC/Exts.hs b/GHC/Exts.hs index fcc8a4a..4b014f1 100644 --- a/GHC/Exts.hs +++ b/GHC/Exts.hs @@ -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, @@ -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)