{-# LANGUAGE CPP #-} -- | -- Stability: unstable -- Portability: unportable -- -- Internal modules are always subject to change from version to version. -- The contents of this module are also platform-dependent, hence what is -- shown in the Hackage documentation may differ from what is actually -- available on your system. #include module System.Directory.Internal ( module System.Directory.Internal.Common #if defined(mingw32_HOST_OS) , module System.Directory.Internal.Windows #else , module System.Directory.Internal.Posix #endif ) where import System.Directory.Internal.Common #if defined(mingw32_HOST_OS) import System.Directory.Internal.Windows #else import System.Directory.Internal.Posix #endif