[project @ 2000-03-31 03:09:35 by hwloidl]
[ghc-hetmet.git] / ghc / lib / std / PrelWeak.lhs
index 3b09a39..c710127 100644 (file)
@@ -15,6 +15,8 @@ import PrelMaybe
 import PrelIOBase
 import PrelForeign
 
+#ifndef __PARALLEL_HASKELL__
+
 data Weak v = Weak (Weak# v)
 
 mkWeak  :: k                           -- key
@@ -43,4 +45,6 @@ instance Eq (Weak v) where
   (Weak w1) == (Weak w2) = w1 `sameWeak#` w2
 -}
 
+#endif
+
 \end{code}