From 6807371300c5b7860c7270686a1cca0a3ee80427 Mon Sep 17 00:00:00 2001 From: simonmar Date: Fri, 22 Mar 2002 10:20:24 +0000 Subject: [PATCH] [project @ 2002-03-22 10:20:24 by simonmar] This module now lives above the Prelude in the dependency tree. --- Control/Monad/Fix.hs | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) 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 -- 1.7.10.4