Remove ext-core
[ghc-hetmet.git] / utils / ext-core / lib / GHC_ExtCore / Handle.hs
diff --git a/utils/ext-core/lib/GHC_ExtCore/Handle.hs b/utils/ext-core/lib/GHC_ExtCore/Handle.hs
deleted file mode 100644 (file)
index 6417c28..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-{-# OPTIONS -fglasgow-exts #-}
-
--- Replacement for GHC.Handle module
-
-module GHC_ExtCore.Handle(Handle(..), stdin, stderr, stdout, hFlush) where
-
-import GHC.Exts
-
-newtype Handle = H Int
-
--- these shouldn't actually get used
-stdout, stdin, stderr :: Handle
-stdin  = H 0
-stdout = H 1
-stderr = H 2
-
--- ditto
-hFlush :: Handle -> IO ()
-hFlush _ = return ()