Skip to content
Snippets Groups Projects
Commit e3122c9e authored by sof's avatar sof
Browse files

[project @ 1997-10-08 17:42:31 by sof]

ForeignObj functionality is not supported in __PARALLEL_HASKELL__
parent cf5fe52b
No related merge requests found
......@@ -9,7 +9,9 @@
module Foreign (
module Foreign,
#ifndef __PARALLEL_HASKELL__
ForeignObj(..),
#endif
Addr(..), Word(..)
) where
......@@ -72,6 +74,7 @@ instance CReturnable () -- Why, exactly?
%*********************************************************
\begin{code}
#ifndef __PARALLEL_HASKELL__
--Defined in PrelBase: data ForeignObj = ForeignObj ForeignObj#
data ForeignObj = ForeignObj ForeignObj# -- another one
......@@ -100,6 +103,7 @@ eqForeignObj mp1 mp2
instance Eq ForeignObj where
p == q = eqForeignObj p q
p /= q = not (eqForeignObj p q)
#endif /* !__PARALLEL_HASKELL__ */
\end{code}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment