From: simonmar Date: Thu, 13 Jan 2005 10:23:27 +0000 (+0000) Subject: [project @ 2005-01-13 10:23:07 by simonmar] X-Git-Tag: nhc98-1-18-release~121 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=3116880983d3babec6675c2a27e300155f03040c;p=ghc-base.git [project @ 2005-01-13 10:23:07 by simonmar] import Prelude explicitly --- diff --git a/System/Process.hs b/System/Process.hs index 7216ac7..3ae8fec 100644 --- a/System/Process.hs +++ b/System/Process.hs @@ -45,6 +45,8 @@ module System.Process ( terminateProcess, ) where +import Prelude + import System.Process.Internals import Foreign diff --git a/Text/Printf.hs b/Text/Printf.hs index ec370f7..69bc7cd 100644 --- a/Text/Printf.hs +++ b/Text/Printf.hs @@ -13,6 +13,8 @@ ----------------------------------------------------------------------------- module Text.Printf(printf, hPrintf) where + +import Prelude import Data.Array import Data.Char import Numeric(showEFloat, showFFloat, showGFloat)