avoid warnings about not exported System.Directory.isSymbolicLink

This commit is contained in:
Joey Hess 2016-04-28 15:18:11 -04:00
parent 9f6c29fb38
commit b22409db38
Failed to extract signature
20 changed files with 18 additions and 21 deletions

View file

@ -6,9 +6,12 @@
-}
{-# LANGUAGE CPP #-}
{-# OPTIONS_GHC -fno-warn-tabs #-}
{-# OPTIONS_GHC -fno-warn-tabs -w #-}
module Utility.Directory where
module Utility.Directory (
module Utility.Directory,
module System.Directory
) where
import System.IO.Error
import System.Directory hiding (isSymbolicLink)