From: simonmar Date: Fri, 22 Mar 2002 10:20:24 +0000 (+0000) Subject: [project @ 2002-03-22 10:20:24 by simonmar] X-Git-Tag: nhc98-1-18-release~1083 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=6807371300c5b7860c7270686a1cca0a3ee80427;p=haskell-directory.git [project @ 2002-03-22 10:20:24 by simonmar] This module now lives above the Prelude in the dependency tree. --- diff --git a/Control/Monad/Fix.hs b/Control/Monad/Fix.hs index f69d790..3a0be32 100644 --- a/Control/Monad/Fix.hs +++ b/Control/Monad/Fix.hs @@ -1,4 +1,3 @@ -{-# OPTIONS -fno-implicit-prelude #-} ----------------------------------------------------------------------------- -- -- Module : Control.Monad.Fix @@ -10,7 +9,7 @@ -- Stability : experimental -- Portability : portable -- --- $Id: Fix.hs,v 1.3 2002/03/14 12:09:49 simonmar Exp $ +-- $Id: Fix.hs,v 1.4 2002/03/22 10:20:24 simonmar Exp $ -- -- The Fix monad. -- @@ -29,14 +28,7 @@ module Control.Monad.Fix ( fix -- :: (a -> a) -> a ) where -#ifdef __GLASGOW_HASKELL__ --- MonadFix is needed by System.IO, so it is below the Prelude. -import Control.Monad -import GHC.Base -import GHC.Err -import Data.Maybe -#endif - +import Prelude import System.IO fix :: (a -> a) -> a