From 30464c0cb915c2ae900909568fa8677bba341e45 Mon Sep 17 00:00:00 2001 From: "Malcolm.Wallace@cs.york.ac.uk" Date: Tue, 11 Jul 2006 16:09:41 +0000 Subject: [PATCH] make Control.Monad.Instances compilable by nhc98 --- Control/Monad/Instances.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Control/Monad/Instances.hs b/Control/Monad/Instances.hs index 1641e03..f53fac2 100644 --- a/Control/Monad/Instances.hs +++ b/Control/Monad/Instances.hs @@ -1,3 +1,4 @@ +{-# OPTIONS_NHC98 -prelude #-} ----------------------------------------------------------------------------- -- | -- Module : Control.Monad.Instances @@ -11,7 +12,7 @@ -- 'Functor' and 'Monad' instances for @(->) r@ and -- 'Functor' instances for @(,) a@ and @'Either' a@. -module Control.Monad.Instances () where +module Control.Monad.Instances (Functor(..),Monad(..)) where import Prelude -- 1.7.10.4