[project @ 2001-07-04 11:30:52 by simonmar]
authorsimonmar <unknown>
Wed, 4 Jul 2001 11:30:52 +0000 (11:30 +0000)
committersimonmar <unknown>
Wed, 4 Jul 2001 11:30:52 +0000 (11:30 +0000)
Add Prelude imports.

Control/Concurrent/QSem.hs
System/Console/GetOpt.hs

index 6ffba7d..2cc9f55 100644 (file)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: QSem.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: QSem.hs,v 1.2 2001/07/04 11:30:52 simonmar Exp $
 --
 -- General semaphores
 --
@@ -21,6 +21,7 @@ module Control.Concurrent.QSem
          signalQSem    -- :: QSem -> IO ()
        ) where
 
+import Prelude
 import Control.Concurrent.MVar
 
 -- General semaphores are also implemented readily in terms of shared
index 36c6095..1aa1b7e 100644 (file)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  portable
 --
--- $Id: GetOpt.hs,v 1.1 2001/07/04 10:48:39 simonmar Exp $
+-- $Id: GetOpt.hs,v 1.2 2001/07/04 11:30:52 simonmar Exp $
 --
 -- A Haskell port of GNU's getopt library 
 --
@@ -42,6 +42,7 @@ module System.Console.GetOpt (
                        --        -> ([a],[String],[String])
   ) where
 
+import Prelude
 import Data.List       ( isPrefixOf )
 
 data ArgOrder a                -- what to do with options following non-options: