diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2014-09-21 10:46:19 +0200 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2014-09-21 10:46:19 +0200 |
commit | e7c1633203e33c4a1af866c8658683bcef20a514 (patch) | |
tree | ab27c1db17b4f8833600d8d831e855e270033856 /libraries/base/System | |
parent | ed65808cebf068a98f564f6ad962838c6526591b (diff) | |
download | haskell-e7c1633203e33c4a1af866c8658683bcef20a514.tar.gz |
Simplify import-graph a bit more
This is preparatory refactoring for avoiding import cycles
when `Data.Traversable` will be imported by `Control.Monad` and
`Data.List` for implementing #9586
Diffstat (limited to 'libraries/base/System')
-rw-r--r-- | libraries/base/System/IO.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/System/IO.hs b/libraries/base/System/IO.hs index 5cd0351fdb..cb67a2a1c8 100644 --- a/libraries/base/System/IO.hs +++ b/libraries/base/System/IO.hs @@ -222,7 +222,6 @@ module System.IO ( import Control.Exception.Base import Data.Bits -import Data.List import Data.Maybe import Foreign.C.Error #ifdef mingw32_HOST_OS @@ -233,6 +232,7 @@ import System.Posix.Internals import System.Posix.Types import GHC.Base +import GHC.List import GHC.IO hiding ( bracket, onException ) import GHC.IO.IOMode import GHC.IO.Handle.FD |