[project @ 2002-01-02 15:01:27 by simonmar]
authorsimonmar <unknown>
Wed, 2 Jan 2002 15:01:27 +0000 (15:01 +0000)
committersimonmar <unknown>
Wed, 2 Jan 2002 15:01:27 +0000 (15:01 +0000)
import Prelude explicitly (this is necessary in libraries/core so that
ghc --make can infer correct dependencies).

GHC/Exts.hs

index 3ba88ca..d75dc5a 100644 (file)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Exts.hs,v 1.1 2002/01/02 14:40:10 simonmar Exp $
+-- $Id: Exts.hs,v 1.2 2002/01/02 15:01:27 simonmar Exp $
 --
 -- GHC Extensions: this is the Approved Way to get at GHC-specific stuff.
 --
@@ -30,6 +30,8 @@ module GHC.Exts
 
        ) where
 
+import Prelude
+
 import {-# SOURCE #-} GHC.Prim
 import GHC.Base
 import GHC.Word