pdf-toolbox-document-0.0.5.1: compat/Prelude.hs
{-# LANGUAGE PackageImports #-}
{-# LANGUAGE CPP #-}
module Prelude
(
module P,
#if MIN_VERSION_base(4,8,0)
#else
(<$>),
Monoid(..),
Applicative(..),
#endif
)
where
import "base" Prelude as P
#if MIN_VERSION_base(4,8,0)
#else
import Data.Functor ((<$>))
import Data.Monoid(Monoid(..))
import Control.Applicative (Applicative(..))
#endif