diff options
Diffstat (limited to 'compiler/utils/GhcIO.hs')
-rw-r--r-- | compiler/utils/GhcIO.hs | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/compiler/utils/GhcIO.hs b/compiler/utils/GhcIO.hs deleted file mode 100644 index 17198de071..0000000000 --- a/compiler/utils/GhcIO.hs +++ /dev/null @@ -1,24 +0,0 @@ - --- | A simple version compatability wrapper around GHC.IO. --- --- This module exports both the safe and Unsafe version of GHC.IO --- taking care of the SafeHaskell changeover which spit up the --- old GHC.IO module. --- -module GhcIO ( -#if __GLASGOW_HASKELL__ >= 701 - module GHC.IO.Safe, - module GHC.IO.Unsafe -#else - module GHC.IO -#endif - ) where - -#if __GLASGOW_HASKELL__ >= 701 -import GHC.IO.Safe -import GHC.IO.Unsafe -#else -import GHC.IO -#endif - - |