summaryrefslogtreecommitdiff
path: root/libraries/base/System/Mem.hs
diff options
context:
space:
mode:
authorsimonmar <unknown>2002-02-13 12:17:14 +0000
committersimonmar <unknown>2002-02-13 12:17:14 +0000
commit6fba759b1a6a4873daeeb6e4764c10f4ba56f620 (patch)
tree9575a0070bc839a3c664dcf4db83eb8f444337e6 /libraries/base/System/Mem.hs
parent462a416a98672c5dee0f4facfd570b7d53bd028d (diff)
downloadhaskell-6fba759b1a6a4873daeeb6e4764c10f4ba56f620.tar.gz
[project @ 2002-02-13 12:17:14 by simonmar]
import Prelude
Diffstat (limited to 'libraries/base/System/Mem.hs')
-rw-r--r--libraries/base/System/Mem.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/libraries/base/System/Mem.hs b/libraries/base/System/Mem.hs
index a50d6ffab0..a6e752c623 100644
--- a/libraries/base/System/Mem.hs
+++ b/libraries/base/System/Mem.hs
@@ -8,7 +8,7 @@
-- Stability : provisional
-- Portability : portable
--
--- $Id: Mem.hs,v 1.1 2002/02/12 10:50:03 simonmar Exp $
+-- $Id: Mem.hs,v 1.2 2002/02/13 12:17:14 simonmar Exp $
--
-- Memory-related system things.
--
@@ -18,6 +18,8 @@ module System.Mem (
performGC -- :: IO ()
) where
+import Prelude
+
#ifdef __GLASGOW_HASKELL__
foreign import {-safe-} "performGC" performGC :: IO ()
#endif