[project @ 2002-08-03 19:32:49 by reid]
authorreid <unknown>
Sat, 3 Aug 2002 19:32:49 +0000 (19:32 +0000)
committerreid <unknown>
Sat, 3 Aug 2002 19:32:49 +0000 (19:32 +0000)
Oops

Foreign/Storable.hs [deleted file]

diff --git a/Foreign/Storable.hs b/Foreign/Storable.hs
deleted file mode 100644 (file)
index 3d57481..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-{-# OPTIONS -fno-implicit-prelude #-}
------------------------------------------------------------------------------
--- |
--- Module      :  Foreign.Storable
--- Copyright   :  (c) The FFI task force 2001
--- License     :  BSD-style (see the file libraries/base/LICENSE)
--- 
--- Maintainer  :  ffi@haskell.org
--- Stability   :  provisional
--- Portability :  portable
---
--- The module "Storable" provides most elementary support for
--- marshalling and is part of the language-independent portion of the
--- Foreign Function Interface (FFI), and will normally be imported via
--- the "Foreign" module.
---
------------------------------------------------------------------------------
-
-module Foreign.Storable
-       ( -- * The 'Storable' class
-         Storable(
-            sizeOf,         -- :: a -> Int
-            alignment,      -- :: a -> Int
-            peekElemOff,    -- :: Ptr a -> Int      -> IO a
-            pokeElemOff,    -- :: Ptr a -> Int -> a -> IO ()
-            peekByteOff,    -- :: Ptr b -> Int      -> IO a
-            pokeByteOff,    -- :: Ptr b -> Int -> a -> IO ()
-            peek,           -- :: Ptr a             -> IO a
-            poke)           -- :: Ptr a        -> a -> IO ()
-       ) where
-
-#ifdef __GLASGOW_HASKELL__
-import GHC.Storable
-#endif