[project @ 2001-07-04 10:51:09 by simonmar]
authorsimonmar <unknown>
Wed, 4 Jul 2001 10:51:09 +0000 (10:51 +0000)
committersimonmar <unknown>
Wed, 4 Jul 2001 10:51:09 +0000 (10:51 +0000)
oops, better import Prelude

(we have to explicitly import Prelude in all modules that aren't
compiled with -fno-implicit-prelude so that ghc --make gets the
dependencies right.  This should really be fixed in CompManager
somehow).

Data/Array/Storable.hs

index e725d2d..76d2dae 100644 (file)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Storable.hs,v 1.1 2001/07/04 10:48:39 simonmar Exp $
+-- $Id: Storable.hs,v 1.2 2001/07/04 10:51:09 simonmar Exp $
 --
 -- A storable array is an IO-mutable array which stores its
 -- contents in a contiguous memory block living in the C
@@ -45,6 +45,8 @@ module Data.Array.Storable (
     )
     where
 
+import Prelude
+
 import Data.Array.Base
 import Data.Array.MArray
 import Foreign hiding (newArray)