pathtype-0.5: System/Path/Posix.hs
{-# LANGUAGE EmptyDataDecls, PatternGuards, FlexibleInstances, Rank2Types, OverloadedStrings #-}
{-# LANGUAGE CPP #-}
#define MODULE_NAME Posix
#define IS_WINDOWS False
-- | This module provides type-safe access to filepath manipulations.
--
-- Normally you would import 'System.Path' (which will use the
-- default implementation for the host platform) instead of this.
-- However, importing this explicitly allows for manipulation of
-- non-native paths.
--
-- Ben Moseley - (c) 2009-2010
#ifdef __HADDOCK__
module System.Path.Posix where
#else
#include "Internal.hs"
#endif