summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsimonmar <unknown>2000-04-14 08:55:42 +0000
committersimonmar <unknown>2000-04-14 08:55:42 +0000
commit96f9e65b180851a6522742497ff75d141ca40a78 (patch)
treec89fd911f27e9ae35229a51ac03fac905c48f8bc
parentf2dc93350f9b67e203b95bd5dfbccf66bd118d48 (diff)
downloadhaskell-96f9e65b180851a6522742497ff75d141ca40a78.tar.gz
[project @ 2000-04-14 08:55:42 by simonmar]
fix up imports of ForeignObj(..).
-rw-r--r--ghc/compiler/utils/FastString.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/compiler/utils/FastString.lhs b/ghc/compiler/utils/FastString.lhs
index 080decb51d..f0e7d9c119 100644
--- a/ghc/compiler/utils/FastString.lhs
+++ b/ghc/compiler/utils/FastString.lhs
@@ -96,7 +96,7 @@ import IOExts ( hPutBufFull, hPutBufBAFull )
-- ForeignObj is now exported abstractly.
#if __GLASGOW_HASKELL__ >= 303
-import qualified PrelForeign as Foreign ( ForeignObj(..) )
+import PrelForeign ( ForeignObj(..) )
#else
import Foreign ( ForeignObj(..) )
#endif