[project @ 2005-01-13 10:23:07 by simonmar]
authorsimonmar <unknown>
Thu, 13 Jan 2005 10:23:27 +0000 (10:23 +0000)
committersimonmar <unknown>
Thu, 13 Jan 2005 10:23:27 +0000 (10:23 +0000)
import Prelude explicitly

System/Process.hs
Text/Printf.hs

index 7216ac7..3ae8fec 100644 (file)
@@ -45,6 +45,8 @@ module System.Process (
        terminateProcess,
  ) where
 
+import Prelude
+
 import System.Process.Internals
 
 import Foreign
index ec370f7..69bc7cd 100644 (file)
@@ -13,6 +13,8 @@
 -----------------------------------------------------------------------------
 
 module Text.Printf(printf, hPrintf) where
+
+import Prelude
 import Data.Array
 import Data.Char
 import Numeric(showEFloat, showFFloat, showGFloat)