{-# LANGUAGE CPP #-} module Data.Path.Platform where import qualified Data.Path.Implementation as I #if mingw32_HOST_OS type Platform = I.W32 pathSeparators = "/\\" #else type Platform = I.Posix pathSeparators = "/" #endif