[project @ 2002-04-24 16:31:37 by simonmar]
[ghc-base.git] / Foreign / StablePtr.hs
index d5a6b6a..48acc57 100644 (file)
@@ -1,6 +1,6 @@
 {-# OPTIONS -fno-implicit-prelude #-}
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Foreign.StablePtr
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -9,7 +9,7 @@
 -- Stability   :  provisional
 -- Portability :  portable
 --
--- $Id: StablePtr.hs,v 1.2 2001/07/03 11:37:50 simonmar Exp $
+-- $Id: StablePtr.hs,v 1.4 2002/04/24 16:31:44 simonmar Exp $
 --
 -- Stable pointers.
 --
@@ -24,12 +24,7 @@ module Foreign.StablePtr
         , castPtrToStablePtr -- :: Ptr () -> StablePtr a
         ) where
 
-import Data.Dynamic
-
 #ifdef __GLASGOW_HASKELL__
 import GHC.Stable
 import GHC.Err
 #endif
-
-#include "Dynamic.h"
-INSTANCE_TYPEABLE1(StablePtr,stablePtrTc,"StablePtr")