[project @ 1996-06-05 06:44:31 by partain]
[ghc-hetmet.git] / ghc / compiler / utils / Bag.lhs
index 857dda2..6085e37 100644 (file)
@@ -4,6 +4,8 @@
 \section[Bags]{@Bag@: an unordered collection with duplicates}
 
 \begin{code}
+#include "HsVersions.h"
+
 module Bag (
        Bag,    -- abstract type
 
@@ -15,7 +17,8 @@ module Bag (
     ) where
 
 #ifdef COMPILING_GHC
-import Ubiq{-uitous-}
+IMP_Ubiq(){-uitous-}
+IMPORT_1_3(List(partition))
 
 import Outputable      ( interpp'SP )
 import Pretty