05f2c7bd8ee46343ec5b15053b61293990d27fc2
[ghc-base.git] / System / IO / Unsafe.hs
1 {-# OPTIONS_GHC -XNoImplicitPrelude #-}
2 -----------------------------------------------------------------------------
3 -- |
4 -- Module      :  System.IO.Unsafe
5 -- Copyright   :  (c) The University of Glasgow 2001
6 -- License     :  BSD-style (see the file libraries/base/LICENSE)
7 -- 
8 -- Maintainer  :  libraries@haskell.org
9 -- Stability   :  provisional
10 -- Portability :  portable
11 --
12 -- \"Unsafe\" IO operations.
13 --
14 -----------------------------------------------------------------------------
15
16 module System.IO.Unsafe (
17    -- * Unsafe 'System.IO.IO' operations
18    unsafePerformIO,     -- :: IO a -> a
19    unsafeInterleaveIO,  -- :: IO a -> IO a
20   ) where
21
22 #ifdef __GLASGOW_HASKELL__
23 import GHC.IO (unsafePerformIO, unsafeInterleaveIO)
24 #endif
25
26 #ifdef __HUGS__
27 import Hugs.IOExts (unsafePerformIO, unsafeInterleaveIO)
28 #endif
29
30 #ifdef __NHC__
31 import NHC.Internal (unsafePerformIO, unsafeInterleaveIO)
32 #endif
33