{-# LANGUAGE Safe #-} {-# LANGUAGE CPP #-} ----------------------------------------------------------------------------- -- | -- Module : Passman.Core.Internal.Compat -- Copyright : Matthew Harm Bekkema 2016 -- License : GPL-2 -- Maintainer : mbekkema97@gmail.com -- Stability : experimental -- Portability : POSIX ----------------------------------------------------------------------------- module Passman.Core.Internal.Compat (Natural) where #if MIN_VERSION_base(4,8,0) import Numeric.Natural (Natural) #else type Natural = Integer #endif